show/hide this revision's text 2 Added tutorial link.

Having looked more deeply, it appears the solution on recent versions of dbx is something like:

stop access w <address>, <size>

Since <address> and <size> can be expressions, you can write commands like:

stop access w &p, sizeof(int)

This assumes p is a pointer and we want to monitor the first word it points to.

Whether or not this will work for

I've also run across a fine tutorial on tracking and stomping memory leak situations remains to be testedbugs. More input would It uses gdb rather than dbx, but the principles should be welcomethe same.

show/hide this revision's text 1

Having looked more deeply, it appears the solution on recent versions of dbx is something like:

stop access w <address>, <size>

Since <address> and <size> can be expressions, you can write commands like:

stop access w &p, sizeof(int)

This assumes p is a pointer and we want to monitor the first word it points to.

Whether or not this will work for memory leak situations remains to be tested. More input would be welcome.