Possible Duplicate:
Preventing GDB from stepping into a function (or file)
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:
Is there a way to automatically avoiding stepping into certain functions in Visual Studio?
Is this at all possible with gdb or ddd?