|
@@ -367,14 +367,13 @@ asmlinkage int sys_fork(struct pt_regs *regs)
|
|
|
}
|
|
|
|
|
|
asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
|
|
|
- unsigned long parent_tidptr,
|
|
|
- unsigned long child_tidptr, struct pt_regs *regs)
|
|
|
+ void __user *parent_tidptr, void __user *child_tidptr,
|
|
|
+ struct pt_regs *regs)
|
|
|
{
|
|
|
if (!newsp)
|
|
|
newsp = regs->sp;
|
|
|
- return do_fork(clone_flags, newsp, regs, 0,
|
|
|
- (int __user *)parent_tidptr,
|
|
|
- (int __user *)child_tidptr);
|
|
|
+ return do_fork(clone_flags, newsp, regs, 0, parent_tidptr,
|
|
|
+ child_tidptr);
|
|
|
}
|
|
|
|
|
|
asmlinkage int sys_vfork(struct pt_regs *regs)
|