-2

Possible Duplicate:
Maximum number of threads per process in Linux?

just with some curiosity i am asking

How manny threads can be created in one process? 

is there any limitation for that ?

How manny process can be created on one system ?

is there any limitation for that ?

I think this would be differ as per different OS. I am more concern for knowing this value for linux ...

Community
  • 1
  • 1
Jeegar Patel
  • 26,264
  • 51
  • 149
  • 222

1 Answers1

3

you can use this:

cat /proc/sys/kernel/threads-max

you can increase this by:

echo 100000 > /proc/sys/kernel/threads-max

use search function :) : Maximum number of threads per process in Linux?

Community
  • 1
  • 1
Stefan Koenen
  • 2,289
  • 2
  • 20
  • 32