Report on FreeBSD 4.4 pthread implementation verses boehm-gc

2001-11-08 Thread Loren James Rittle
Hello all, I have ported the most recent version of boehm-gc (6.1-alpha) to FreeBSD/i386 under the auspice of the gcc project (it will be in Hans' 6.1 release and it is on the gcc mainline). I got one notable thing fully configured beyond what is in the ports tree (which is based on 6.0):

Re: Report on FreeBSD 4.4 pthread implementation verses boehm-gc

2001-11-08 Thread Warner Losh
In message [EMAIL PROTECTED] Loren James Rittle writes: : void* worker (void* arg) : { : pthread_kill (*(pthread_t*)arg, SIGUSR1); : sleep (1); : pthread_kill (*(pthread_t*)arg, SIGUSR2); : } We've seen the same thing with: pthread_kill (*(pthread_t*)arg, SIGUSR1);