크게 제한은 없다.
단, 메모리의 영향을 받기 때문에 메모리가 적을수록 쓰레드의 숫자도 적어질수 밖에 없다.
cat /proc/sys/kernel/threads-max
number of threads = total virtual memory / (stack size*1024*1024)
Total Virtual Memory: ulimit -v (default is unlimited, thus you need to increase swap memory to increase this)
Total Stack Size: ulimit -s (default is 8Mb)
[링크 : http://stackoverflow.com/questions/344203/maximum-number-of-threads-per-process-in-linux]
'Linux API' 카테고리의 다른 글
lirc - linux IR Remote control (0) | 2015.03.31 |
---|---|
vaapi vdpau uvd (6) | 2015.03.26 |
getopt() / getopt_long() (0) | 2014.11.19 |
공유메모리 (0) | 2014.09.02 |
timeval, gettimeofday() (0) | 2013.08.20 |