Simple question i belive, is
outputdebugstring(pansichar(''));
Thread safe?
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.
(delphi7)
|
|
Simple question i belive, is
Thread safe? 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. (delphi7)
|
|||
|
|
|
|
Don't worry, it is. regards, Lieven |
||
|
|
|
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. |
||
|
|
|
|
Well, not that it isn't true, it is, but just so that you don't have to just take Lieven word for it:
Understanding Win32 OutputDebugString is an excellent article on the matter. |
||
|