How do you put a breakpoint on a memory location in dbx? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T07:36:02Zhttp://stackoverflow.com/feeds/question/351052http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351052/how-do-you-put-a-breakpoint-on-a-memory-location-in-dbx1How do you put a breakpoint on a memory location in dbx?Jon Ericson2008-12-08T21:48:45Z2008-12-10T00:57:13Z
<p>A co-worker has a C program that fails in a predictable manner because of some corrupted memory. He'd like to use <code>dbx</code> to monitor the memory location once it's allocated in order to pinpoint the code that causes the corruption.</p>
<p>Is this possible? If so what is the syntax to produce a breakpoint at the moment of corruption?</p>
<p>If not, what would be a good approach to fixing this sort of issue?</p>
<p>(My usual tactic is to look at the source control to see what I've changed lately, since that is usually the cause. But the code in question sounds as if it only ever worked by luck, so that won't work. Also, I've already eliminated myself as the culprit by never having worked with the code. ;-)</p>
http://stackoverflow.com/questions/351052/how-do-you-put-a-breakpoint-on-a-memory-location-in-dbx/351098#3510980Answer by Paul Betts for How do you put a breakpoint on a memory location in dbx?Paul Betts2008-12-08T22:03:20Z2008-12-08T22:03:20Z<p>I'm no Solaris dev, but you can do this with gdb and hardware breakpoints</p>
http://stackoverflow.com/questions/351052/how-do-you-put-a-breakpoint-on-a-memory-location-in-dbx/354722#3547221Answer by Jon Ericson for How do you put a breakpoint on a memory location in dbx?Jon Ericson2008-12-10T00:22:47Z2008-12-10T00:57:13Z<p>Having looked more deeply, it appears the solution on recent versions of <code>dbx</code> is something like:</p>
<pre><code>stop access w <address>, <size>
</code></pre>
<p>Since <code><address></code> and <code><size></code> can be expressions, you can write commands like:</p>
<pre><code>stop access w &p, sizeof(int)
</code></pre>
<p>This assumes <code>p</code> is a pointer and we want to monitor the first word it points to.</p>
<p>I've also run across a fine <a href="http://www.cs.berkeley.edu/~smcpeak/memory-errors/" rel="nofollow">tutorial</a> on tracking and stomping memory bugs. It uses <code>gdb</code> rather than <code>dbx</code>, but the principles should be the same.</p>