Subj : Re: pthreads (linux) questions To : comp.programming.threads From : Andrew Burgess Date : Thu Aug 25 2005 04:15 pm Christian Parpart writes: >> I want to print the stack of an application when it crashes. >no need for all you did before. >The following works in pthread environments: He wants the stack trace of ALL the threads, the code you posted only works for the calling thread. One way to combine these is to install a signal handler for each thread and signal them all to print their own stack trace... HTH .