tb_event_death when single stepping in dbx - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T05:50:56Zhttp://stackoverflow.com/feeds/question/313992http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/313992/tbeventdeath-when-single-stepping-in-dbx2tb_event_death when single stepping in dbxChris Huang-Leaver2008-11-24T12:00:15Z2009-09-17T12:36:06Z
<p>When I am single stepping through one thread of a multi threaded program, the debugger gets interrupted with:</p>
<pre><code>0x(some hex ref) : tdb_event_death : ret
dbx: thread has exited -- next aborted
</code></pre>
<p>My guess is a thread somewhere in the program I am debugging has stopped, but it's not the one I'm debugging so I can't see why I have to restart the debugging process to continue. </p>
<p>I have a work around, I set a breakpoint on the next line then rerun, which works but is very annoying, it is really slowing down my debugging. Does anyone know a better way ? (single step ALL threads for example)</p>
http://stackoverflow.com/questions/313992/tbeventdeath-when-single-stepping-in-dbx/523499#5234991Answer by Ric Tokyo for tb_event_death when single stepping in dbxRic Tokyo2009-02-07T09:26:10Z2009-02-07T09:26:10Z<p>Hi, try setting you environment variable _THREAD_ERROR_DETECTION to 0</p>
<p><a href="http://blogs.sun.com/quenelle/entry/debugging_tips_for_threaded_programs" rel="nofollow">some light reading</a></p>
http://stackoverflow.com/questions/313992/tbeventdeath-when-single-stepping-in-dbx/531378#5313781Answer by Employed Russian for tb_event_death when single stepping in dbxEmployed Russian2009-02-10T07:40:32Z2009-02-10T07:40:32Z<p>What is likely happening is that some other thread has exited (doing <code>next</code> resumes all threads in the process, not just the one you are debugging). You can verify this: do <code>thread</code> when you start debugging a particular place, and again when you get the <code>next aborted</code> message.</p>
<p>If the thread you are debugging doesn't need to interact with other threads, you can resume just that one thread with <code>next <thread_id></code> (where <code>thread_id</code> is the one <code>thread</code> command prints).</p>
<p>A word of caution: if your thread needs to malloc() some memory, you may have to resume other threads, because one of them could be holding e.g. <code>malloc</code> lock.</p>