diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-10-31 19:23:02 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-10-31 19:23:02 +0000 |
commit | 3cad22a2ba18a924f0193a4ee4e28fb81f875242 (patch) | |
tree | 500755fafb2228d12c3cee77896b410f6a6e98ff /proc/wait.c | |
parent | 1f84649e6164c858529df98c7e4a427f03fa3c65 (diff) |
(struct zombie): Deleted; now in proc.h.
(zombie_list): Likewise.
Diffstat (limited to 'proc/wait.c')
-rw-r--r-- | proc/wait.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/proc/wait.c b/proc/wait.c index b8f2e60e..267fc618 100644 --- a/proc/wait.c +++ b/proc/wait.c @@ -36,18 +36,6 @@ #include <mach/mig_errors.h> -struct zombie -{ - struct zombie *next; - pid_t pid, pgrp; - struct proc *parent; - int exit_status; - struct rusage ru; -}; - -static struct zombie *zombie_list; - - /* Return nonzero if a `waitpid' on WAIT_PID by a process in MYPGRP cares about the death of PID/PGRP. */ static inline int |