diff options
Diffstat (limited to 'include/asm-x86/ptrace.h')
-rw-r--r-- | include/asm-x86/ptrace.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index 8a71db803da6..a33f027dbbea 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _ASM_X86_PTRACE_H | 1 | #ifndef ASM_X86__PTRACE_H |
2 | #define _ASM_X86_PTRACE_H | 2 | #define ASM_X86__PTRACE_H |
3 | 3 | ||
4 | #include <linux/compiler.h> /* For __user */ | 4 | #include <linux/compiler.h> /* For __user */ |
5 | #include <asm/ptrace-abi.h> | 5 | #include <asm/ptrace-abi.h> |
@@ -148,6 +148,9 @@ extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, | |||
148 | void signal_fault(struct pt_regs *regs, void __user *frame, char *where); | 148 | void signal_fault(struct pt_regs *regs, void __user *frame, char *where); |
149 | #endif | 149 | #endif |
150 | 150 | ||
151 | extern long syscall_trace_enter(struct pt_regs *); | ||
152 | extern void syscall_trace_leave(struct pt_regs *); | ||
153 | |||
151 | static inline unsigned long regs_return_value(struct pt_regs *regs) | 154 | static inline unsigned long regs_return_value(struct pt_regs *regs) |
152 | { | 155 | { |
153 | return regs->ax; | 156 | return regs->ax; |
@@ -213,6 +216,11 @@ static inline unsigned long frame_pointer(struct pt_regs *regs) | |||
213 | return regs->bp; | 216 | return regs->bp; |
214 | } | 217 | } |
215 | 218 | ||
219 | static inline unsigned long user_stack_pointer(struct pt_regs *regs) | ||
220 | { | ||
221 | return regs->sp; | ||
222 | } | ||
223 | |||
216 | /* | 224 | /* |
217 | * These are defined as per linux/ptrace.h, which see. | 225 | * These are defined as per linux/ptrace.h, which see. |
218 | */ | 226 | */ |
@@ -239,4 +247,4 @@ extern int do_set_thread_area(struct task_struct *p, int idx, | |||
239 | 247 | ||
240 | #endif /* !__ASSEMBLY__ */ | 248 | #endif /* !__ASSEMBLY__ */ |
241 | 249 | ||
242 | #endif | 250 | #endif /* ASM_X86__PTRACE_H */ |