This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: How not to step into functions called as arguments of another function?


> Not in one command, but in two:
> (gdb) break f
> (gdb) continue

Right, or often people will prefer the temporary breakpoint:

        (gdb) tbreak f
        (gdb) cont

It's actually a good idea to define a user command for that if this
is a common situation for you.

-- 
Joel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]