Re: Maximum number of processes in Linux

From: Robert Hancock
Date: Tue Aug 15 2006 - 19:14:06 EST


Irfan Habib wrote:
Hi,

What is the maximum number of process which can run simultaneously in
linux? I need to create an application which requires 40,000 threads.
I was testing with far fewer numbers than that, I was getting
exceptions in pthread_create

What architecture is this? On a 32-bit architecture with a 2MB stack size (which I think is the default) you couldn't possibly create more than 2048 threads just because of stack space requirements. Reducing the stack size would get you more.

I should also point out that any design that requires 40,000 threads is probably quite flawed unless you are running on a very large machine..

--
Robert Hancock Saskatoon, SK, Canada
To email, remove "nospam" from hancockr@xxxxxxxxxxxxx
Home Page: http://www.roberthancock.com/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/