Subj : Re: Thread-safe exceptions To : comp.programming.threads From : David Schwartz Date : Fri Mar 11 2005 07:13 pm wrote in message news:1110579126.168732.142960@z14g2000cwz.googlegroups.com... > Does anyone know which C++ compilers have thread-safe > exception-handling? That is, they don't use any static storage to > handle exceptions? I know gcc is one. What about MS compilers? I've never heard of a C++ compiler intended for multi-threaded use that did this. As far as I know, they all keep this information on the stack. DS .