]> Zhao Yanbai Git Server - minix.git/commitdiff
don't hang old binaries
authorBen Gras <ben@minix3.org>
Thu, 11 Dec 2008 14:45:49 +0000 (14:45 +0000)
committerBen Gras <ben@minix3.org>
Thu, 11 Dec 2008 14:45:49 +0000 (14:45 +0000)
servers/vfs/utility.c

index 43fbba8b83c62712a7a88b63b71e79c94001918c..b79ed73dc5b98d09ea86096719c1c3fc31a03d0e 100644 (file)
@@ -87,7 +87,7 @@ PUBLIC int no_sys()
 {
 /* Somebody has used an illegal system call number */
   printf("VFSno_sys: call %d from %d\n", call_nr, who_e);
-  return(SUSPEND);
+  return(ENOSYS);
 }
 
 /*===========================================================================*
@@ -143,6 +143,6 @@ PUBLIC time_t clock_time()
   if (r != OK)
        panic(__FILE__,"clock_time err", r);
 
-  return( (time_t) (boottime + (uptime/HZ)));
+  return( (time_t) (boottime + (uptime/system_hz)));
 }