
13 Apr
2006
13 Apr
'06
10:06 p.m.
Jeremy Stanley wrote:
As a refresher, this approach won't help...
try { thread_proc(); } catch(...) { exception_filter(); // ... because I don't have a stack trace here. }
sorry to butt in, but could you pls. explain why? I just suggested something similar in another thread (and mailing list). exception_filter would look like: exception_filter() { try {throw;} catch(std::exception& e) {//... } catch(whateverelse& e) {//... } // .. etc } B.