diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-22 22:51:14 -0400 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-28 23:43:42 -0500 | 
| commit | afa86fc426ff7e7f5477f15da9c405d08d5cf790 (patch) | |
| tree | 0f82925269757902ce6f7c287a968f7b439d2b2d /include/linux/sched.h | |
| parent | 135c37b83c81b79a888108e3f7c5f64423d8a851 (diff) | |
| download | olio-linux-3.10-afa86fc426ff7e7f5477f15da9c405d08d5cf790.tar.xz olio-linux-3.10-afa86fc426ff7e7f5477f15da9c405d08d5cf790.zip  | |
flagday: don't pass regs to copy_thread()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/sched.h')
| -rw-r--r-- | include/linux/sched.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index c57249782e4..78a2ae3470d 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -2271,7 +2271,7 @@ extern void mm_release(struct task_struct *, struct mm_struct *);  extern struct mm_struct *dup_mm(struct task_struct *tsk);  extern int copy_thread(unsigned long, unsigned long, unsigned long, -			struct task_struct *, struct pt_regs *); +			struct task_struct *);  extern void flush_thread(void);  extern void exit_thread(void);  |