3 PUBLIC
int sys_newmap(proc
, ptr
)
4 int proc
; /* process whose map is to be changed */
5 struct mem_map
*ptr
; /* pointer to new map */
7 /* A process has been assigned a new memory map. Tell the kernel. */
12 m
.PR_MEM_PTR
= (char *) ptr
;
13 return(_taskcall(SYSTASK
, SYS_NEWMAP
, &m
));