patch-2.4.0-test8 linux/arch/m68k/kernel/process.c
Next file: linux/arch/m68k/kernel/signal.c
Previous file: linux/arch/ia64/kernel/signal.c
Back to the patch index
Back to the overall index
- Lines: 28
- Date:
Tue Sep 5 13:50:01 2000
- Orig file:
v2.4.0-test7/linux/arch/m68k/kernel/process.c
- Orig date:
Mon Jul 10 16:47:19 2000
diff -u --recursive --new-file v2.4.0-test7/linux/arch/m68k/kernel/process.c linux/arch/m68k/kernel/process.c
@@ -181,12 +181,12 @@
asmlinkage int m68k_fork(struct pt_regs *regs)
{
- return do_fork(SIGCHLD, rdusp(), regs);
+ return do_fork(SIGCHLD, rdusp(), regs, 0);
}
asmlinkage int m68k_vfork(struct pt_regs *regs)
{
- return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, rdusp(), regs);
+ return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, rdusp(), regs, 0);
}
asmlinkage int m68k_clone(struct pt_regs *regs)
@@ -199,10 +199,11 @@
newsp = regs->d2;
if (!newsp)
newsp = rdusp();
- return do_fork(clone_flags, newsp, regs);
+ return do_fork(clone_flags, newsp, regs, 0);
}
int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
+ unsigned long unused,
struct task_struct * p, struct pt_regs * regs)
{
struct pt_regs * childregs;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)