]> Zhao Yanbai Git Server - minix.git/commitdiff
*** empty log message ***
authorJorrit Herder <jnherder@minix3.org>
Thu, 21 Jul 2005 18:37:19 +0000 (18:37 +0000)
committerJorrit Herder <jnherder@minix3.org>
Thu, 21 Jul 2005 18:37:19 +0000 (18:37 +0000)
lib/syslib/sys_memset.c
lib/syslib/sys_svrctl.c
lib/sysutil/kputc.c

index 3386c0e0844292e84e8f10693b558afe9253f121..c1c98ab11672d9261e26b593163139d07e8ee59b 100644 (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));
 }
index 7fa2a1d9f2fdb9e935ba5b0bc5a9fdc59b2d5c23..16b1bc667ff9e1dd1f02c1b91fbe6548ef44d776 100644 (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);
 }
index 242a4b22b20e458b262243c5217ce9445d0e4713..7085798190ffcf55fe1487a1671b3d6c194acfb8 100644 (file)
@@ -5,9 +5,8 @@
  * reviewed at a later time. 
  *
  * This routine can only be used by servers and device drivers.  The kernel
- * must define its own kputc(). Note that the IS also defines its own kputc()
- * to directly call the TTY instead of the kernel, because it does not want
- * to pollute the kernel message buffer with its debug dumps. 
+ * must define its own kputc(). Note that the log driver also defines its own 
+ * kputc() to directly call the TTY instead of going through this library.
  */
 
 #include "sysutil.h"