[Bug breakpoints/12958] How to set a breakpoint at the exit of a function?

qiyao at gcc dot gnu.org sourceware-bugzilla@sourceware.org
Wed Jul 6 01:33:00 GMT 2011


http://sourceware.org/bugzilla/show_bug.cgi?id=12958

Yao Qi <qiyao at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |qiyao at gcc dot gnu.org

--- Comment #1 from Yao Qi <qiyao at gcc dot gnu.org> 2011-07-06 01:33:03 UTC ---
(In reply to comment #0)
> I know how to set a breakpoint at the begin of a function.it is "break
> function_name",but how to set a breakpoint at the exit/end of a function?

you can dissembly the function in gdb, and get the address of exit/end of a
function, then you can set breakpoint on that address, for example, "b
*0x123456".

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the Gdb-prs mailing list