1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/bootrom/bootram/include/linux/threads.h
2024-07-22 01:58:46 -03:00

25 lines
422 B
C
Executable File

#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/max-threads.
*/
#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