Re: fix possible segfault creating detached thread (fwd)

2005-08-05 Thread Mike Gorse
On Tue, 2 Aug 2005, Corinna Vinschen wrote: Can you please review your patch file? I was unable to apply the patch, even when using the -l option: Pine must be wrapping lines. I'm resending it as an attachment. 2005-08-05 Michael Gorse [EMAIL PROTECTED] * thread.cc (pthread::create(3

Re: fix possible segfault creating detached thread

2005-08-02 Thread Corinna Vinschen
On Aug 1 20:05, Mike Gorse wrote: ARGH! I really need to be more careful... Sorry for all the emails. One last correction... 2005-08-01 Michael Gorse [EMAIL PROTECTED] * thread.cc (pthread::create(3 args)): Make bool. (pthread_null::create): Ditto. thread.h:

Re: fix possible segfault creating detached thread

2005-08-01 Thread Corinna Vinschen
On Jul 31 15:17, Mike Gorse wrote: This patch fixes a seg fault when a thread is created in a detached state and terminates the first time it is scheduled. pthread::create (the four-parameter version) calls the three-parameter pthread::create function which unlocks the mutex, allowing the

Re: fix possible segfault creating detached thread

2005-08-01 Thread Mike Gorse
On Mon, 1 Aug 2005, Corinna Vinschen wrote: This patch fixes a seg fault when a thread is created in a detached state and terminates the first time it is scheduled. pthread::create (the four-parameter version) calls the three-parameter pthread::create function which unlocks the mutex, allowing

Re: fix possible segfault creating detached thread

2005-08-01 Thread Mike Gorse
ARGH! I really need to be more careful... Sorry for all the emails. One last correction... 2005-08-01 Michael Gorse [EMAIL PROTECTED] * thread.cc (pthread::create(3 args)): Make bool. (pthread_null::create): Ditto. thread.h: Ditto. * thread.cc

fix possible segfault creating detached thread

2005-07-31 Thread Mike Gorse
This patch fixes a seg fault when a thread is created in a detached state and terminates the first time it is scheduled. pthread::create (the four-parameter version) calls the three-parameter pthread::create function which unlocks the mutex, allowing the called thread to be scheduled, then