threads.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_THREADS_H
  2. #define _LINUX_THREADS_H
  3. #include <linux/config.h>
  4. /*
  5.  * The default limit for the nr of threads is now in
  6.  * /proc/sys/kernel/threads-max.
  7.  */
  8.  
  9. #ifdef CONFIG_SMP
  10. #define NR_CPUS 32 /* Max processors that can be running in SMP */
  11. #else
  12. #define NR_CPUS 1
  13. #endif
  14. #define MIN_THREADS_LEFT_FOR_ROOT 4
  15. /*
  16.  * This controls the maximum pid allocated to a process
  17.  */
  18. #define PID_MAX 0x8000
  19. #endif