GNUstep Testfarm Results

2008-04-07 Thread Adam Fedor
Test results for GNUstep as of Mon Apr 7 06:34:11 EDT 2008 If a particular system failed compilation, the logs for that system will be placed at ftp://ftp.gnustep.org/pub/testfarm If you would like to be a part of this automated testfarm, see http://wiki.gnustep.org/index.php/Developer_FAQ#How_ca

NSThread limits?

2008-04-07 Thread Marc Wan
hello! I am looking to create a server that maintains a pool of a few hundred threads at a time, and being a fan of objective-c, i had hoped to be able to use GNUStep to do this on non-mac platforms. unfortunately, I don't seem to be able to fork more than about 150-160 threads using NSThread

Re: NSThread limits?

2008-04-07 Thread Sašo Kiselkov
The problem you're experiencing is because GNUstep's runtime creates threads with a detach state of PTHREAD_CREATE_JOINABLE, which don't release the resources associated with the thread until another thread calls a pthread_join() on the terminated thread in order to collect its return status. Which

Re: NSThread limits?

2008-04-07 Thread Richard Frith-Macdonald
On 7 Apr 2008, at 03:30, Marc Wan wrote: hello! I am looking to create a server that maintains a pool of a few hundred threads at a time, and being a fan of objective-c, i had hoped to be able to use GNUStep to do this on non-mac platforms. unfortunately, I don't seem to be able to fork mor