make vfs & filesystems use failable copying
[minix3.git] / lib / libsys / sys_profbuf.c
blob834226722d990db206a8048e2e5cfbacaa870a11
1 #include "syslib.h"
3 /*===========================================================================*
4 * sys_profbuf *
5 *===========================================================================*/
6 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));