diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ptrace.h | 9 | ||||
-rw-r--r-- | include/linux/syscalls.h | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index 4272521e29e9..67a4cd77c352 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h | |||
@@ -108,7 +108,8 @@ extern int ptrace_attach(struct task_struct *tsk); | |||
108 | extern int ptrace_detach(struct task_struct *, unsigned int); | 108 | extern int ptrace_detach(struct task_struct *, unsigned int); |
109 | extern void ptrace_disable(struct task_struct *); | 109 | extern void ptrace_disable(struct task_struct *); |
110 | extern int ptrace_check_attach(struct task_struct *task, int kill); | 110 | extern int ptrace_check_attach(struct task_struct *task, int kill); |
111 | extern int ptrace_request(struct task_struct *child, long request, long addr, long data); | 111 | extern int ptrace_request(struct task_struct *child, long request, |
112 | unsigned long addr, unsigned long data); | ||
112 | extern void ptrace_notify(int exit_code); | 113 | extern void ptrace_notify(int exit_code); |
113 | extern void __ptrace_link(struct task_struct *child, | 114 | extern void __ptrace_link(struct task_struct *child, |
114 | struct task_struct *new_parent); | 115 | struct task_struct *new_parent); |
@@ -132,8 +133,10 @@ static inline void ptrace_unlink(struct task_struct *child) | |||
132 | __ptrace_unlink(child); | 133 | __ptrace_unlink(child); |
133 | } | 134 | } |
134 | 135 | ||
135 | int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data); | 136 | int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr, |
136 | int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data); | 137 | unsigned long data); |
138 | int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr, | ||
139 | unsigned long data); | ||
137 | 140 | ||
138 | /** | 141 | /** |
139 | * task_ptrace - return %PT_* flags that apply to a task | 142 | * task_ptrace - return %PT_* flags that apply to a task |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index e6319d18a55d..cacc27a0e285 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -701,7 +701,8 @@ asmlinkage long sys_nfsservctl(int cmd, | |||
701 | asmlinkage long sys_syslog(int type, char __user *buf, int len); | 701 | asmlinkage long sys_syslog(int type, char __user *buf, int len); |
702 | asmlinkage long sys_uselib(const char __user *library); | 702 | asmlinkage long sys_uselib(const char __user *library); |
703 | asmlinkage long sys_ni_syscall(void); | 703 | asmlinkage long sys_ni_syscall(void); |
704 | asmlinkage long sys_ptrace(long request, long pid, long addr, long data); | 704 | asmlinkage long sys_ptrace(long request, long pid, unsigned long addr, |
705 | unsigned long data); | ||
705 | 706 | ||
706 | asmlinkage long sys_add_key(const char __user *_type, | 707 | asmlinkage long sys_add_key(const char __user *_type, |
707 | const char __user *_description, | 708 | const char __user *_description, |