views:

85

answers:

1

I have some infrastructure C++ code (containers, memory managers etc.) and I want the debugger to never step into those methods while debugging an application issue.

I know this can be done with Visual Studio and I have used that before on other projects:

http://stackoverflow.com/questions/626744/is-there-a-way-to-automatically-avoiding-stepping-into-certain-functions-in-visua

Is this at all possible with gdb or ddd?

A: 

This is a duplicate of this question. See also this answer.

Short answer: no.

Employed Russian
The actual question is about not stepping into a specific function during a debugging session. What I am looking for is for 'blacklisting' a whole list of functions. But you are right it seems that GDB can not do it (yet).
James Dean