explanations with common test3 errors.
[minix3.git] / lib / syslib / sys_vm_setbuf.c
blobade00cc6209173f53452ca797198753c9d6cf3c4
1 #include "syslib.h"
3 /*===========================================================================*
4 * sys_vm_setbuf *
5 *===========================================================================*/
6 PUBLIC int sys_vm_setbuf(base, size, high)
7 phys_bytes base;
8 phys_bytes size;
9 phys_bytes high;
11 message m;
12 int result;
14 m.m4_l1= base;
15 m.m4_l2= size;
16 m.m4_l3= high;
18 result = _taskcall(SYSTASK, SYS_VM_SETBUF, &m);
19 return(result);