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); pthread_kill (*(pthread_t*)arg, SIGUSR1); At this point, the signal handler repeatedly gets called. Warner To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message