threads.h
来自「linux得一些常用命令,以及linux环境下的c编程」· C头文件 代码 · 共 29 行
H
29 行
#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 + =
减小字号Ctrl + -
显示快捷键?