URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [linux/] [threads.h] - Rev 1775
Go to most recent revision | Compare with Previous | Blame | View Log
#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 CONFIG_NR_CPUS #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
Go to most recent revision | Compare with Previous | Blame | View Log