878ba523ac
This library includes various random and minix-specific functions included in the Minix libc. Most of them should be part of libsys, and in general it would be nice to extinguish this library over time.
11 lines
192 B
C
11 lines
192 B
C
#include <lib.h>
|
|
#include <unistd.h>
|
|
|
|
PUBLIC int vm_set_priv(int nr, void *buf)
|
|
{
|
|
message m;
|
|
m.VM_RS_NR = nr;
|
|
m.VM_RS_BUF = (long) buf;
|
|
return _syscall(VM_PROC_NR, VM_RS_SET_PRIV, &m);
|
|
}
|
|
|