Handmade Network»Forums
Tom
25 posts
None
Potentially helpful tool for the C/C++ programmers here
Hadn't seen this link for a memory-debugger pop up in the forums so I figured i'd pass it along.

https://www.youtube.com/watch?v=pvkn9Xz-xks

Haven't had a reason to actually use it yet, but it certainly looks impressive.
Andrew Kabakwu
6 posts
Potentially helpful tool for the C/C++ programmers here
Looks very impressive...
23 posts
Potentially helpful tool for the C/C++ programmers here
Codeslasher
Looks very impressive...

Indeed. Reminds me of that "rant" Casey had in on of the Q&A or pre stream sessions about how debuggers should help visualize the data of the program etc.
Although at this point in time, I think it would be quite confusing to use when looking at a lot of nested data and accessing different pointers.
Though to be fair, Visual Studio has very similar problems and is a finished product.
Mārtiņš Možeiko
2559 posts / 2 projects
Potentially helpful tool for the C/C++ programmers here
There is DDD debugger which is frontend for GDB and others: https://www.gnu.org/software/ddd/
Its focus is representing data structures visually in various ways. For example, here's how linked lists look like in DDD: http://www.cs.angelo.edu/~mmotl/2...dd/html/PICS/ddd-print-output.png
23 posts
Potentially helpful tool for the C/C++ programmers here
mmozeiko
There is DDD debugger which is frontend for GDB and others: https://www.gnu.org/software/ddd/
Its focus is representing data structures visually in various ways. For example, here's how linked lists look like in DDD: http://www.cs.angelo.edu/~mmotl/2...dd/html/PICS/ddd-print-output.png

Interesting. I don't use GDB at the moment, but might be worth to try out.