Go to the documentation of this file. 1 #ifndef _LINUX_THREADS_H
2 #define _LINUX_THREADS_H
14 #ifndef CONFIG_NR_CPUS
16 #define CONFIG_NR_CPUS 1
20 #define NR_CPUS CONFIG_NR_CPUS
22 #define MIN_THREADS_LEFT_FOR_ROOT 4
27 #define PID_MAX_DEFAULT (CONFIG_BASE_SMALL ? 0x1000 : 0x8000)
33 #define PID_MAX_LIMIT (CONFIG_BASE_SMALL ? PAGE_SIZE * 8 : \
34 (sizeof(long) > 4 ? 4 * 1024 * 1024 : PID_MAX_DEFAULT))
42 #define PIDS_PER_CPU_DEFAULT 1024
43 #define PIDS_PER_CPU_MIN 8