Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 230635
b: refs/heads/master
c: 992a88b
h: refs/heads/master
i:
  230633: a6378d5
  230631: b45c7e0
v: v3
  • Loading branch information
Hans-Christian Egtvedt committed Jan 13, 2011
1 parent 02908a1 commit 0123efb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 664cb7142ced8b827e92e1851d1ed2cae922f225
refs/heads/master: 992a88b62ca327f10d82dbad71a8c061d4229888
5 changes: 0 additions & 5 deletions trunk/arch/avr32/include/asm/syscalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@
#include <linux/types.h>
#include <linux/signal.h>

/* kernel/process.c */
asmlinkage int sys_clone(unsigned long, unsigned long,
unsigned long, unsigned long,
struct pt_regs *);

/* mm/cache.c */
asmlinkage int sys_cacheflush(int, void __user *, size_t);

Expand Down
9 changes: 4 additions & 5 deletions trunk/arch/avr32/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0123efb

Please sign in to comment.