threads.h
来自「ARM 嵌入式 系统 设计与实例开发 实验教材 二源码」· C头文件 代码 · 共 25 行
H
25 行
#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 32 /* Max processors that can be running in SMP */#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 + =
减小字号Ctrl + -
显示快捷键?