|
|
| File: [Development] / linux-2.4-xfs / include / linux / threads.h (download)
Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 9 months ago) by cattelan
Initial Import 2.4.24pre2 |
#ifndef _LINUX_THREADS_H #define _LINUX_THREADS_H #include <linux/config.h> /* * The default limit for the nr of threads is now in * /proc/sys/kernel/threads-max. */ #ifdef CONFIG_SMP #define NR_CPUS CONFIG_NR_CPUS #else #define NR_CPUS 1 #endif #define MIN_THREADS_LEFT_FOR_ROOT 4 /* * This controls the maximum pid allocated to a process */ #define PID_MAX 0x8000 #endif