diff options
Diffstat (limited to 'include/asm-x86/ptrace.h')
-rw-r--r-- | include/asm-x86/ptrace.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index d464f252edc3..a33f027dbbea 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.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 | */ |