Remove the artifical cap on the number of workers
authorSimon Marlow <simonmar@microsoft.com>
Wed, 9 Aug 2006 09:59:08 +0000 (09:59 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Wed, 9 Aug 2006 09:59:08 +0000 (09:59 +0000)
commit7b8b90403e97320661ea17920a257e0bf530c206
tree295e225b9c61cbd6d7ebe064da0ad902311873ce
parent16513d4899e167d20e120c2b3907230b7ff9dd83
Remove the artifical cap on the number of workers
See #805.  This was here to catch bugs that resulted in an infinite
number of worker threads being created.  However, we can't put a
reasonable bound on the number of worker threads, because legitimate
programs may need to create large numbers of (probably blocked) worker
threads.  Furthermore, the OS probably has a bound on the number of
threads that a process can create in any case.
rts/Task.c