Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: ollydbg on December 29, 2009, 11:31:54 am

Title: Is it possible to implement this functionality in debugger plugin?
Post by: ollydbg on December 29, 2009, 11:31:54 am
Preventing the debugger from stepping into trivial functions with NoStepInto . (http://www.litwindow.com/Knowhow/wxHowto/wxhowto.html#nostepinto)

Somethimes it is also annoying when the debugger run into the constructor of parameters. :D
Title: Re: Is it possible to implement this functionality in debugger plugin?
Post by: oBFusCATed on December 29, 2009, 12:06:40 pm
Not supported by GDB, unfortunately.

Here is a chat log from the #gdb at irc.freenode.net
Code
(2009-12-29 12:45:08) obfuscated: hello, is there a way to do the same thing (see the link) with gdb as with vstudio's debugger - http://www.litwindow.com/Knowhow/wxHowto/wxhowto.html#nostepinto
(2009-12-29 12:47:34) brobecke: not as far as I know.  This is something that has been requested once or twice in the past...
(2009-12-29 12:49:33) pholklore: it's such a common request that the last PR filed wants the same basic thing.  PR11117

So we should wait
Title: Re: Is it possible to implement this functionality in debugger plugin?
Post by: ollydbg on December 29, 2009, 02:50:00 pm
Thanks for the reply.
Is it possible done in Debuggerplugin? When press "Step into" button, we should go to the function implementation body.( not the function of others).
Title: Re: Is it possible to implement this functionality in debugger plugin?
Post by: oBFusCATed on December 29, 2009, 02:58:46 pm
Not sure, If possible it is very hard to do.
And the debugger plugin is not the place to do it.