Initial revision
This commit is contained in:
14
lib/syslib/sys_newmap.c
Executable file
14
lib/syslib/sys_newmap.c
Executable file
@@ -0,0 +1,14 @@
|
||||
#include "syslib.h"
|
||||
|
||||
PUBLIC int sys_newmap(proc, ptr)
|
||||
int proc; /* process whose map is to be changed */
|
||||
struct mem_map *ptr; /* pointer to new map */
|
||||
{
|
||||
/* A process has been assigned a new memory map. Tell the kernel. */
|
||||
|
||||
message m;
|
||||
|
||||
m.PR_PROC_NR = proc;
|
||||
m.PR_MEM_PTR = (char *) ptr;
|
||||
return(_taskcall(SYSTASK, SYS_NEWMAP, &m));
|
||||
}
|
||||
Reference in New Issue
Block a user