Remove building with NOCRYPTO option
[minix3.git] / minix / servers / pm / const.h
blob2c48988d391ec383c716d721e0aea2577c56697b
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.)
6 */
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 NO_EVENTSUB ((char)-1) /* no current process event subscriber */
15 #define MAX_SECS ( (clock_t) (TMRDIFF_MAX/system_hz) )
16 /* max.secs for setitimer() ((2^31-1)/HZ) */
17 #define NR_ITIMERS 3 /* number of supported interval timers */
19 #define SEND_PRIORITY 1 /* send current priority queue to scheduler */
20 #define SEND_TIME_SLICE 2 /* send current time slice to scheduler */