diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-04-02 19:56:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:04:51 -0400 |
commit | 6f2c55b843836d26528c56a0968689accaedbc67 (patch) | |
tree | 17501e29d4b6ef3eb85da9a5d6ad3df7f19ec6a2 /include | |
parent | 14dd1ff0f9e75dd4ae2f1ff8e48becb76d14f4ab (diff) |
Simplify copy_thread()
First argument unused since 2.3.11.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 481fad3a9b42..9186f8c5d5f2 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -1975,7 +1975,8 @@ extern void mm_release(struct task_struct *, struct mm_struct *); | |||
1975 | /* Allocate a new mm structure and copy contents from tsk->mm */ | 1975 | /* Allocate a new mm structure and copy contents from tsk->mm */ |
1976 | extern struct mm_struct *dup_mm(struct task_struct *tsk); | 1976 | extern struct mm_struct *dup_mm(struct task_struct *tsk); |
1977 | 1977 | ||
1978 | extern int copy_thread(int, unsigned long, unsigned long, unsigned long, struct task_struct *, struct pt_regs *); | 1978 | extern int copy_thread(unsigned long, unsigned long, unsigned long, |
1979 | struct task_struct *, struct pt_regs *); | ||
1979 | extern void flush_thread(void); | 1980 | extern void flush_thread(void); |
1980 | extern void exit_thread(void); | 1981 | extern void exit_thread(void); |
1981 | 1982 | ||