I have GDB attached to a process that is currently inside a catch(...) block.
Is there a known technique to access that thrown exception?
The program in question is a gcc/x86-64 binary, but I'm also curious about other builds.
|
I have GDB attached to a process that is currently inside a Is there a known technique to access that thrown exception? The program in question is a gcc/x86-64 binary, but I'm also curious about other builds. |
|||||||||
|
|
As you say, you can re-throw it, so you can re-throw it inside another Edit: I misunderstood the importance of
Then in Further edit: If you literally mean I'm running a program under gdb right now and you are not exiting
You will have to examine all of those structures to figure out what's buried inside. |
||||
|
|
|
I have not tested this - but the exception (or at least a pointer to it) should probably be on the stack somewhere close to the head. I guess the exact position and format is implementation dependent, but you should be able casting different addresses in this area of the stack to your exception type (or at least to std::exception) and see if you get meaningful results. |
|||||||||||||
|