Is there a freeware (or better open source) program (framework) for watching behavior of memory (in particular stack and registers) during activity of given program (process) ?
Is there a freeware (or better open source) program (framework) for watching behavior of
Share
Yes – it’s called a debugger… Consider
gdbfor a free & open-source version.gdbalso has many GUI wrappers for your convenience (if you’re a GUI person).In particular the
xcommand ingdblets you examine memory in powerful ways. Read more about it and other options in anygdbreference – I think you’ll be happy with what you see.