diff options
| author | Daniel Jacobowitz <drow@nevyn.them.org> | 2002-10-31 03:49:48 -0500 |
|---|---|---|
| committer | Daniel Jacobowitz <drow@nevyn.them.org> | 2002-10-31 03:49:48 -0500 |
| commit | e7034436abd96604b8117aaa471d03bfd2d66c20 (patch) | |
| tree | fbd91f8e96f718e051f576810000cbaaa6ce854b /include/linux | |
| parent | 0202fe1dc943c38bedc54919d9410f69ceab50d6 (diff) | |
| parent | 87c2766ea1b692ccd91d8a0487a43e46f2daf8d9 (diff) | |
Merge nevyn.them.org:/nevyn/big/kernel/test/linux-2.5-trace2
into nevyn.them.org:/nevyn/big/kernel/test/linux-2.5-trace3
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/ptrace.h | 12 | ||||
| -rw-r--r-- | include/linux/sched.h | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index 8d4f8dcefbab..c6de3a4ea70a 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h @@ -25,9 +25,20 @@ /* 0x4200-0x4300 are reserved for architecture-independent additions. */ #define PTRACE_SETOPTIONS 0x4200 +#define PTRACE_GETEVENTMSG 0x4201 /* options set using PTRACE_SETOPTIONS */ #define PTRACE_O_TRACESYSGOOD 0x00000001 +#define PTRACE_O_TRACEFORK 0x00000002 +#define PTRACE_O_TRACEVFORK 0x00000004 +#define PTRACE_O_TRACECLONE 0x00000008 +#define PTRACE_O_TRACEEXEC 0x00000010 + +/* Wait extended result codes for the above trace options. */ +#define PTRACE_EVENT_FORK 1 +#define PTRACE_EVENT_VFORK 2 +#define PTRACE_EVENT_CLONE 3 +#define PTRACE_EVENT_EXEC 4 #include <asm/ptrace.h> #include <linux/sched.h> @@ -39,6 +50,7 @@ extern int ptrace_detach(struct task_struct *, unsigned int); extern void ptrace_disable(struct task_struct *); extern int ptrace_check_attach(struct task_struct *task, int kill); extern int ptrace_request(struct task_struct *child, long request, long addr, long data); +extern void ptrace_notify(int exit_code); extern void __ptrace_link(struct task_struct *child, struct task_struct *new_parent); extern void __ptrace_unlink(struct task_struct *child); diff --git a/include/linux/sched.h b/include/linux/sched.h index e32942d62219..ed8992516478 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -389,6 +389,8 @@ struct task_struct { void *journal_info; struct dentry *proc_dentry; struct backing_dev_info *backing_dev_info; + + unsigned long ptrace_message; }; extern void __put_task_struct(struct task_struct *tsk); @@ -427,6 +429,10 @@ do { if (atomic_dec_and_test(&(tsk)->usage)) __put_task_struct(tsk); } while(0) #define PT_DTRACE 0x00000002 /* delayed trace (used on m68k, i386) */ #define PT_TRACESYSGOOD 0x00000004 #define PT_PTRACE_CAP 0x00000008 /* ptracer can follow suid-exec */ +#define PT_TRACE_FORK 0x00000010 +#define PT_TRACE_VFORK 0x00000020 +#define PT_TRACE_CLONE 0x00000040 +#define PT_TRACE_EXEC 0x00000080 /* * Limit the stack by to some sane default: root can always |
