In Delphi, is outputdebugstring thread safe? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:53:21Z http://stackoverflow.com/feeds/question/509498 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/509498/in-delphi-is-outputdebugstring-thread-safe 4 In Delphi, is outputdebugstring thread safe? Christopher Chase 2009-02-03T23:41:15Z 2009-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#509502 5 Answer by Lieven for In Delphi, is outputdebugstring thread safe? Lieven 2009-02-03T23:43:11Z 2009-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#509525 16 Answer by Jorge Córdoba for In Delphi, is outputdebugstring thread safe? Jorge Córdoba 2009-02-03T23:55:23Z 2009-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#724378 1 Answer by Stijn Sanders for In Delphi, is outputdebugstring thread safe? Stijn Sanders 2009-04-07T06:43:54Z 2009-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>