GDB 7.0 released
GDB 7.0 released
Posted Oct 9, 2009 15:07 UTC (Fri) by bronson (subscriber, #4806)In reply to: GDB 7.0 released by quotemstr
Parent article: GDB 7.0 released
> though if gdb has trouble with that, it'll have trouble with longjmp too.
Not true. An exception unwinds the stack calling destructors as it goes. Longjmp just restores registers and jumps up the stack. They're very different beasts.
C++ Exception handling is actually quite complex with a number of unintuitive gotchas. Sadly, it's been a great source of compiler bugs too.