Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv22133
Modified Files:
process.c
Log Message:
DA: backout last commit
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/process.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- process.c 18 Sep 2003 13:16:01 -0000 1.20
+++ process.c 18 Sep 2003 13:25:59 -0000 1.21
@@ -203,13 +203,13 @@
if (!newsp) {
newsp = regs->sp;
}
-#if 1 /*def VAX_PROCESS_DEBUG*/
+#ifdef VAX_PROCESS_DEBUG
printk("sys_clone: calling do_fork(0x%08lx, 0x%08lx, 0x%p)\n",
clone_flags, newsp, regs);
#endif
retval = do_fork(clone_flags, newsp, regs, 0);
-#if 1 /*def VAX_PROCESS_DEBUG*/
+#ifdef VAX_PROCESS_DEBUG
printk("sys_clone: do_fork() returned %d\n", retval);
#endif
return retval;
|