summaryrefslogtreecommitdiff
path: root/hurd/hurd_types.h
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-10-30 20:52:32 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-10-30 20:52:32 +0000
commit15c9f1239384aa18d55a6784e3468ae6daa382fa (patch)
tree06cdce7eb2988e404a4f76bf4cb0616acb3c6da7 /hurd/hurd_types.h
parent11847bee758db8861dae3451c08d5773c565ebbd (diff)
(PI_LOGINLD, PI_WAITING, PI_TRACED, PI_GETMSG): New flags.
Diffstat (limited to 'hurd/hurd_types.h')
-rw-r--r--hurd/hurd_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/hurd/hurd_types.h b/hurd/hurd_types.h
index d13d1f0d..b42009fd 100644
--- a/hurd/hurd_types.h
+++ b/hurd/hurd_types.h
@@ -252,12 +252,16 @@ typedef int *procinfo_t;
/* Bits in struct procinfo state: */
#define PI_STOPPED 0x00000001 /* Proc server thinks is stopped. */
#define PI_EXECED 0x00000002 /* Has called proc_exec. */
+#define PI_WAITING 0x00000004 /* Process is waiting for child to exit */
#define PI_ORPHAN 0x00000008 /* Process group is orphaned. */
#define PI_NOMSG 0x00000010 /* Process has no message port. */
#define PI_SESSLD 0x00000020 /* Session leader. */
#define PI_NOTOWNED 0x0000040 /* Process has no owner. */
#define PI_NOPARENT 0x0000080 /* Hasn't identified a parent. */
#define PI_ZOMBIE 0x00000100 /* Has no associated task. */
+#define PI_TRACED 0x00000200 /* Process is being traced */
+#define PI_GETMSG 0x00000400 /* Process is blocked in proc_getmsgport. */
+#define PI_LOGINLD 0x00000800 /* Process is leader of login collection */
/* Conventions */