Date: Thu, 08 Nov 2001 21:03:57 -0700 From: Warner Losh <imp@harmony.village.org> To: rittle@labs.mot.com Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: Report on FreeBSD 4.4 pthread implementation verses boehm-gc Message-ID: <200111090403.fA943v748976@harmony.village.org> In-Reply-To: Your message of "Thu, 08 Nov 2001 20:50:07 CST." <200111090250.fA92o7h55180@latour.rsch.comm.mot.com> References: <200111090250.fA92o7h55180@latour.rsch.comm.mot.com>
index | next in thread | previous in thread | raw e-mail
In message <200111090250.fA92o7h55180@latour.rsch.comm.mot.com> 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 majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200111090403.fA943v748976>
