source: trunk/minix/lib/syslib/sys_vm_setbuf.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 499 bytes
Line 
1#include "syslib.h"
2
3/*===========================================================================*
4 * sys_vm_setbuf *
5 *===========================================================================*/
6PUBLIC int sys_vm_setbuf(base, size, high)
7phys_bytes base;
8phys_bytes size;
9phys_bytes high;
10{
11 message m;
12 int result;
13
14 m.m4_l1= base;
15 m.m4_l2= size;
16 m.m4_l3= high;
17
18 result = _taskcall(SYSTASK, SYS_VM_SETBUF, &m);
19 return(result);
20}
21
Note: See TracBrowser for help on using the repository browser.