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_CLOCK_T ((unsigned long) 1 << ((sizeof(clock_t) * 8) - 1))
16 #define MAX_SECS ( (clock_t) (MAX_CLOCK_T/system_hz) )
17 /* max.secs for setitimer() ((2^31-1)/HZ) */
18 #define NR_ITIMERS 3 /* number of supported interval timers */
20 #define SEND_PRIORITY 1 /* send current priority queue to scheduler */
21 #define SEND_TIME_SLICE 2 /* send current time slice to scheduler */