In Delphi, is outputdebugstring thread safe? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:53:21Zhttp://stackoverflow.com/feeds/question/509498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/509498/in-delphi-is-outputdebugstring-thread-safe4In Delphi, is outputdebugstring thread safe?Christopher Chase2009-02-03T23:41:15Z2009-04-15T17:45:01Z
<p>Simple question i belive, is </p>
<pre><code>outputdebugstring(pansichar(''));
</code></pre>
<p>Thread safe?</p>
<p>I/We have been using it in threads for debugging, and i never occurred to me if i should be doing it a different way.</p>
<p>(delphi7)</p>
http://stackoverflow.com/questions/509498/in-delphi-is-outputdebugstring-thread-safe/509502#5095025Answer by Lieven for In Delphi, is outputdebugstring thread safe?Lieven2009-02-03T23:43:11Z2009-02-03T23:43:11Z<p>Don't worry, it is.</p>
<p>regards,</p>
<p>Lieven</p>
http://stackoverflow.com/questions/509498/in-delphi-is-outputdebugstring-thread-safe/509525#50952516Answer by Jorge Córdoba for In Delphi, is outputdebugstring thread safe?Jorge Córdoba2009-02-03T23:55:23Z2009-02-03T23:55:23Z<p>Well, not that it isn't true, it is, but just so that you don't have to just take Lieven word for it:</p>
<blockquote>
<p>Passing of data between the
application and the debugger is done
via a 4kbyte chunk of shared memory,
with a Mutex and two Event objects
protecting access to it. These are the
four kernel objects involved.</p>
</blockquote>
<p><a href="http://www.unixwiz.net/techtips/outputdebugstring.html" rel="nofollow">Understanding Win32 OutputDebugString</a> is an excellent article on the matter.</p>
http://stackoverflow.com/questions/509498/in-delphi-is-outputdebugstring-thread-safe/724378#7243781Answer by Stijn Sanders for In Delphi, is outputdebugstring thread safe?Stijn Sanders2009-04-07T06:43:54Z2009-04-07T06:43:54Z<p>I've had trouble once, though, with strings in an ISAPI DLL. For some odd reason the IsMultiThread boolean defined in System.pas was not set! Causing weird AccessViolations, once the thread was running more than one thread... A simple "IsMultiThread:=true;" in a unit initialization fixed it.</p>