Subj : Re: Does pthread emit a sigchld signal on successful exit? To : comp.programming.threads From : Torsten Robitzki Date : Fri Aug 19 2005 01:41 pm chuckles wrote: > Hullo all, as the subject says Does pthread emit a sigchld signal on > successful exit? > I have an app which starts a thread in response to a button press in a > GUI. Hi, maybe it's possible with your GUI framework to post a user defined message from your working thread to the frame work's event queue (if the thread is done with the assigned work). One have to determine if the frame work has such a event queue and if it's save to access the queue from different threads. But if it's possible, you can react to the end of the working thread in your GUI like if it where a pressed button. regards Torsten .