Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv21901
Modified Files:
process.c
Log Message:
Signals implementation.
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/process.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- process.c 2001/07/31 17:28:26 1.10
+++ process.c 2001/08/17 20:36:30 1.11
@@ -110,8 +110,8 @@
struct pt_regs *child_regs;
void *stack_top;
- printk("copy_thread: creating new thread: pid %d, task 0x%08lx, usp 0x%08lx\n",
- p->pid, (unsigned long)p, usp);
+/* printk("copy_thread: creating new thread: pid %d, task 0x%08lx, usp 0x%08lx\n",
+ p->pid, (unsigned long)p, usp); */
stack_top = ((union task_union *)p) + 1;
@@ -180,8 +180,8 @@
/* In child. At this point SP points to the very top of
our kernel stack, so we cannot pop anything off. That
means that we can never return from here. */
- printk("kernel_thread: calling thread function at %08lx\n",
- (unsigned long)fn);
+/* printk("kernel_thread: calling thread function at %08lx\n",
+ (unsigned long)fn);*/
kernel_thread_exit(fn(arg));
}
@@ -193,12 +193,12 @@
newsp = regs->sp;
}
- printk("sys_clone: calling do_fork(0x%08lx, 0x%08lx, 0x%p)\n",
- clone_flags, newsp, regs);
+/* printk("sys_clone: calling do_fork(0x%08lx, 0x%08lx, 0x%p)\n",
+ clone_flags, newsp, regs); */
retval = do_fork(clone_flags, newsp, regs, 0);
- printk("sys_clone: do_fork() returned %d\n", retval);
+/* printk("sys_clone: do_fork() returned %d\n", retval);*/
return retval;
}
@@ -250,7 +250,7 @@
void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp)
{
- printk("starting thread %8lX %8lX %8lX\n", new_pc, new_sp, regs->sp);
+/* printk("starting thread %8lX %8lX %8lX\n", new_pc, new_sp, regs->sp);*/
set_fs(USER_DS);
regs->pc = new_pc;
regs->sp = new_sp;
|