News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

using memory pool for the SearchTree Node

Started by ollydbg, July 04, 2009, 08:15:31 AM

Previous topic - Next topic

oBFusCATed

I don't get the last line. You are talking about parsing the whatis gdb command?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

ollydbg

Quote from: oBFusCATed on July 05, 2009, 07:43:36 PM
I don't get the last line. You are talking about parsing the whatis gdb command?
Yes, exactly.
Parsing strings from gdb is hard to implement.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.