*** empty log message ***

This commit is contained in:
Jorrit Herder
2005-07-21 18:37:19 +00:00
parent f0594a9e6d
commit e2b05e4f55
3 changed files with 4 additions and 5 deletions

View File

@@ -7,9 +7,9 @@ PUBLIC int sys_memset(char c, phys_bytes base, phys_bytes bytes)
if (bytes == 0L) return(OK);
mess.MEM_CHAR = c;
mess.MEM_PTR = (char *) base;
mess.MEM_COUNT = bytes;
mess.MEM_PATTERN = c;
return(_taskcall(SYSTASK, SYS_MEMSET, &mess));
}

View File

@@ -9,5 +9,5 @@ int sys_svrctl(int proc, int request, int priv, vir_bytes argp)
m.CTL_MM_PRIV = priv;
m.CTL_ARG_PTR = (char *) argp;
return _taskcall(SYSTASK, SYS_SVRCTL, &m);
return _taskcall(SYSTASK, SYS_PRIVCTL, &m);
}