diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/ia32.h | 6 | ||||
-rw-r--r-- | include/asm-x86/ptrace.h | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/include/asm-x86/ia32.h b/include/asm-x86/ia32.h index 0190b7c4e319..aa9733206e29 100644 --- a/include/asm-x86/ia32.h +++ b/include/asm-x86/ia32.h | |||
@@ -159,12 +159,6 @@ struct ustat32 { | |||
159 | #define IA32_STACK_TOP IA32_PAGE_OFFSET | 159 | #define IA32_STACK_TOP IA32_PAGE_OFFSET |
160 | 160 | ||
161 | #ifdef __KERNEL__ | 161 | #ifdef __KERNEL__ |
162 | struct user_desc; | ||
163 | struct siginfo_t; | ||
164 | int do_get_thread_area(struct thread_struct *t, struct user_desc __user *info); | ||
165 | int do_set_thread_area(struct thread_struct *t, struct user_desc __user *info); | ||
166 | int ia32_child_tls(struct task_struct *p, struct pt_regs *childregs); | ||
167 | |||
168 | struct linux_binprm; | 162 | struct linux_binprm; |
169 | extern int ia32_setup_arg_pages(struct linux_binprm *bprm, | 163 | extern int ia32_setup_arg_pages(struct linux_binprm *bprm, |
170 | unsigned long stack_top, int exec_stack); | 164 | unsigned long stack_top, int exec_stack); |
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index 51ddb2590870..105d1534eaf4 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h | |||
@@ -137,6 +137,17 @@ enum { | |||
137 | }; | 137 | }; |
138 | #endif /* __KERNEL__ */ | 138 | #endif /* __KERNEL__ */ |
139 | #endif /* !__i386__ */ | 139 | #endif /* !__i386__ */ |
140 | |||
141 | #ifdef __KERNEL__ | ||
142 | |||
143 | struct user_desc; | ||
144 | extern int do_get_thread_area(struct task_struct *p, int idx, | ||
145 | struct user_desc __user *info); | ||
146 | extern int do_set_thread_area(struct task_struct *p, int idx, | ||
147 | struct user_desc __user *info, int can_allocate); | ||
148 | |||
149 | #endif /* __KERNEL__ */ | ||
150 | |||
140 | #endif /* !__ASSEMBLY__ */ | 151 | #endif /* !__ASSEMBLY__ */ |
141 | 152 | ||
142 | #endif | 153 | #endif |