Is it possible to inspect the return value of a function in gdb assuming the return value is not assigned to a variable?
|
2
|
|
|
|
|
|
I imagine there are better ways to do it, but the 'finish' command executes until the current stack frame is popped off and prints the return value -- given the program
You can debug it as such --
|
||
|
|
|
|
Yes, just examine the The exceptions to this are functions returning types larger than 32 bits, specifically 64-bit integers ( The other exception is if you're not running on an Intel architecture. In that case, you'll have to figure out which register is used, if any. |
||||||||
|
|
|
Here's how todo this with no symbols.
Formatting kinda messed up there, note the use of "info frame" to inspect frames, and "frame #" to navigate your context to another context (up and down the stack) bt also show's an abbreviated stack to help out. |
||
|
|
