no vm_setbuf any more (kernel doesn't create its page table any more),

no relocking field (locks not checked)
This commit is contained in:
Ben Gras
2009-05-28 14:23:38 +00:00
parent 9b73964f6d
commit 85881e9995
5 changed files with 0 additions and 62 deletions

View File

@@ -66,7 +66,6 @@ libsys_FILES=" \
sys_vinl.c \
sys_vinw.c \
sys_vircopy.c \
sys_vm_setbuf.c \
sys_vmctl.c \
sys_voutb.c \
sys_voutl.c \

View File

@@ -1,21 +0,0 @@
#include "syslib.h"
/*===========================================================================*
* sys_vm_setbuf *
*===========================================================================*/
PUBLIC int sys_vm_setbuf(base, size, high)
phys_bytes base;
phys_bytes size;
phys_bytes high;
{
message m;
int result;
m.m4_l1= base;
m.m4_l2= size;
m.m4_l3= high;
result = _taskcall(SYSTASK, SYS_VM_SETBUF, &m);
return(result);
}