Subj : Re: pthread_mutex_lock throws an exception on receiving signal 15 To : comp.programming.threads From : David Schwartz Date : Fri Sep 23 2005 02:16 am "pankaj-startup" wrote in message news:1127319506.445921.271520@g14g2000cwa.googlegroups.com... > Suppose a parentThread has one function which spwans a childThread. If > i dont try/catch exception in childThread, then would exception raised > in childThread be catched in parentThread try/catch (assuming that > parentThread waits further after spwaning childThread)? Threads don't have parent/child relationships. They're all peers and interact on an equal basis. Unless you are using some thread-aware exceptions, exceptions are handled the same way they were in single-threaded programs. Standard C++ exceptions would require significant changes in their semantics to be useful across threads rather than just within ithem. DS .