Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv3458
Modified Files:
process.c
Log Message:
do_fork takes another argument that we're not interested in yet
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/process.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- process.c 15 Jun 2003 22:33:56 -0000 1.16
+++ process.c 26 Jun 2003 22:15:06 -0000 1.17
@@ -200,7 +200,7 @@
printk("sys_clone: calling do_fork(0x%08lx, 0x%08lx, 0x%p)\n",
clone_flags, newsp, regs);
#endif
- p = do_fork(clone_flags & ~CLONE_IDLETASK, newsp, regs, 0, NULL);
+ p = do_fork(clone_flags & ~CLONE_IDLETASK, newsp, regs, 0, NULL, NULL);
retval = IS_ERR(p) ? PTR_ERR(p) : p->pid;
#ifdef VAX_PROCESS_DEBUG
@@ -212,14 +212,14 @@
int sys_fork(struct pt_regs *regs)
{
struct task_struct *p;
- p = do_fork(SIGCHLD, regs->sp, regs, 0, NULL);
+ p = do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
return IS_ERR(p) ? PTR_ERR(p) : p->pid;
}
int sys_vfork(struct pt_regs *regs)
{
struct task_struct *p;
- p = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0, NULL);
+ p = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0, NULL, NULL);
return IS_ERR(p) ? PTR_ERR(p) : p->pid;
}
|