diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 23:13:05 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 23:13:05 +0000 |
commit | 05b7e06a1c54c585c2e2f2a51ef43a10dc31fafd (patch) | |
tree | 8b9719ac0ee885e1ff2b43c23f549c861c40a4b3 | |
parent | ba560249054236af4da59040803894b21ae4e7e1 (diff) |
(struct proc): Add p_sigcode.
-rw-r--r-- | proc/proc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proc/proc.h b/proc/proc.h index 2afb3e6c..b3fe7e8a 100644 --- a/proc/proc.h +++ b/proc/proc.h @@ -63,6 +63,7 @@ struct proc /* Miscellaneous information */ vm_address_t p_argv, p_envp; int p_status; /* to return via wait */ + int p_sigcode; int p_exec:1; /* has called proc_mark_exec */ int p_stopped:1; /* has called proc_mark_stop */ |