1 /* Constants used by the Process Manager. */
3 #define NR_PIDS 30000 /* process ids range from 0 to NR_PIDS-1.
4 * (magic constant: some old applications use
5 * a 'short' instead of pid_t.)
8 #define NO_PID 0 /* pid value indicating no process */
9 #define INIT_PID 1 /* INIT's process id number */
11 #define NO_TRACER 0 /* process is not being traced */
13 #define DUMPED 0200 /* bit set in status when core dumped */
15 #define MAX_SECS (((1<<(sizeof(clock_t)*8-1))-1)/system_hz)
16 /* max.secs for setitimer() ((2^31-1)/HZ) */
17 #define NR_ITIMERS 3 /* number of supported interval timers */