secondary cache feature in vm.
[minix.git] / lib / libsys / sys_profbuf.c
blob2534f8a9df1eea3dc5e768a27f916215a9295415
1 #include "syslib.h"
3 /*===========================================================================*
4 * sys_profbuf *
5 *===========================================================================*/
6 PUBLIC int sys_profbuf(ctl_ptr, mem_ptr)
7 void *ctl_ptr; /* pointer to control structure */
8 void *mem_ptr; /* pointer to profiling table */
10 message m;
12 m.PROF_CTL_PTR = ctl_ptr;
13 m.PROF_MEM_PTR = mem_ptr;
15 return(_kernel_call(SYS_PROFBUF, &m));