more pid queries; PM field macros; vm stubs
[minix.git] / lib / other / _vm_set_priv.c
bloba0e6980c2779120d51388b02f3bdd790b9b7cdf3
1 #include <lib.h>
2 #define vm_set_priv _vm_set_priv
3 #include <unistd.h>
5 PUBLIC int vm_set_priv(int nr, void *buf)
7 message m;
8 m.VM_RS_NR = nr;
9 m.VM_RS_BUF = (long) buf;
10 return _syscall(VM_PROC_NR, VM_RS_SET_PRIV, &m);