diff options
author | Miles Bader <miles@gnu.org> | 1996-04-23 21:18:44 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-04-23 21:18:44 +0000 |
commit | 9a2fb5b9c375302781c4a812c6d37612f41ea347 (patch) | |
tree | 4d7ebf744c88547e861926f63481460c9b034be6 /libps/ps.h | |
parent | 46198acd0f490c9861f7d07cbb0603dd9f4663e7 (diff) |
(PSTAT_STATE_P_ATTRS): Fix names of individual flags.
Diffstat (limited to 'libps/ps.h')
-rw-r--r-- | libps/ps.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -343,11 +343,11 @@ struct proc_stat #define PSTAT_STATE_P_WAIT 0x40000 /* w process waiting for a child */ #define PSTAT_STATE_P_GETMSG 0x80000 /* g waiting for a msgport */ -#define PSTAT_STATE_P_ATTRS (PSTAT_STATE_P_FG | PSTAT_P_SESSLDR \ - | PSTAT_P_LOGINLDR | PSTAT_P_FORKED \ - | PSTAT_P_NOMSG | PSTAT_STATE_P_NOPARENT \ - | PSTAT_STATE_P_ORPHAN | PSTAT_STATE_P_TRACE \ - | PSTAT_STATE_P_WAIT | PSTAT_STATE_P_GETMSG) +#define PSTAT_STATE_P_ATTRS (PSTAT_STATE_P_FG | PSTAT_STATE_P_SESSLDR \ + | PSTAT_STATE_P_LOGINLDR | PSTAT_STATE_P_FORKED \ + | PSTAT_STATE_P_NOMSG | PSTAT_STATE_P_NOPARENT \ + | PSTAT_STATE_P_ORPHAN | PSTAT_STATE_P_TRACE \ + | PSTAT_STATE_P_WAIT | PSTAT_STATE_P_GETMSG) /* Per-thread state; in a process, these represent the union of its threads. */ |