After a little mishap a few minutes ago where I mistakenly tried to start 1000 threads I was wondering if Windows puts a hard limit on the number of threads one process can start? A few quick looks didn't turn up anything but it's just curiosity anyway.. It's not a big deal but if anyone knows, please drop me a line..
Thanks!
Thread limit?
Thread limit?
-Mitchell
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net
I searched for this information few days ago. This is what I found on plataform SDK CreateThread description:
The number of threads a process can create is limited by the available virtual memory. By default, every thread has one megabyte of stack space. Therefore, you can create at most 2028 threads. If you reduce the default stack size, you can create more threads.
...