<p>beware! if you're going to use Carbon sendevent (sendmessage), than you should keep in mind, that it acts different from Windows thread message.<br></p><p>Win sendmessage blocks the sending thread until recieving threads proccess the messages. Of cause, if thread sends a message to itself (or a window in the same thread) then processing function is called immediatly. </p>
<p>Mac sendevent actually calls event process function, in the calling thread. This might cause any kind of threads errors, if data is not syncronized. </p>