Uninitialized vector entry?
[minix3.git] / lib / other / _cprofile.c
blob8d0f69e6700a5d9a52cafa38ff7048b49b39ebee
1 #include <lib.h>
3 #define cprofile _cprofile
5 PUBLIC int cprofile(int action, int size, char *ctl_ptr, int *mem_ptr)
7 message m;
9 m.PROF_ACTION = action;
10 m.PROF_MEM_SIZE = size;
11 m.PROF_CTL_PTR = (void *) ctl_ptr;
12 m.PROF_MEM_PTR = (void *) mem_ptr;
14 return _syscall(MM, CPROF, &m);