Uninitialized vector entry?
[minix3.git] / lib / syslib / sys_profbuf.c
blob9c9bf3688a766d1ad6a0e44ff0d2f14216676a97
1 #include "syslib.h"
3 #include <minix/config.h>
5 #if CPROFILE
7 /*===========================================================================*
8 * sys_profbuf *
9 *===========================================================================*/
10 PUBLIC int sys_profbuf(ctl_ptr, mem_ptr)
11 void *ctl_ptr; /* pointer to control structure */
12 void *mem_ptr; /* pointer to profiling table */
14 message m;
16 m.PROF_CTL_PTR = ctl_ptr;
17 m.PROF_MEM_PTR = mem_ptr;
19 return(_taskcall(SYSTASK, SYS_PROFBUF, &m));
22 #endif