📄 threads.h
字号:
#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#ifdef __mips__#define NR_CPUS _MIPS_SZLONG#else#define NR_CPUS 32 /* Max processors that can be running in SMP */#endif#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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -