vm stubs; no more sys_vm_setbuf

This commit is contained in:
Ben Gras
2009-09-21 14:42:58 +00:00
parent c9fee544b6
commit 348978e64a
7 changed files with 55 additions and 24 deletions

18
lib/syslib/vm_ctl.c Normal file
View File

@@ -0,0 +1,18 @@
#include "syslib.h"
#include <minix/vm.h>
/*===========================================================================*
* vm_umap *
*===========================================================================*/
PUBLIC int vm_ctl(int what, int param)
{
message m;
int result;
m.VCTL_WHAT = what;
m.VCTL_PARAM = param;
return _taskcall(VM_PROC_NR, VM_CTL, &m);
}