Is there a limit on the number of threads that can be spawned simultaneously?

Posted by georgesl on Programmers See other posts from Programmers or by georgesl
Published on 2012-11-01T13:43:24Z Indexed on 2012/11/01 17:16 UTC
Read the original article Hit count: 195

Filed under:
|

Yesterday I came across this question: How can i call robocopy within a python script to bulk copy multiple folders?, and I though it might be a good exercise for multithreading.

I though of spawning as many threads as files needed to be copied, each routine having an exception handling system to prevent the whole copying process from crashing (and log -using mutex on the log file - if there was an error).

My question: Is there a limit on the number of thread you can spawn almost simultaneously? If yes, what is the limiting factor?

My question is focused on PC desktop, but I welcome any answer on different hardware (embedded systems, calculus clusters, etc.).

© Programmers or respective owner

Related posts about multithreading

Related posts about process