Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv30601/arch/vax/kernel
Modified Files:
process.c
Log Message:
do_fork() gets another argument in 2.5.33
Index: process.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/process.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- process.c 9 Feb 2003 01:44:54 -0000 1.12
+++ process.c 14 Feb 2003 00:53:00 -0000 1.13
@@ -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);
+ p = do_fork(clone_flags & ~CLONE_IDLETASK, newsp, regs, 0, 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);
+ p = do_fork(SIGCHLD, regs->sp, regs, 0, 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);
+ p = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0, NULL);
return IS_ERR(p) ? PTR_ERR(p) : p->pid;
}
|