<div dir="ltr"><div><div><div><div><div>Hi,<br><br></div>I started to make an IDE like tool in Pharo, and I have an external library for handling some asynchronous events generated in a separate thread, which I am putting in a queue that I am polling each 200 ms from a Pharo image. Currently I am using this library for handling pipes of external process (GDB with the machine interface), and next I am going to add support for inotify.<br><br></div>I know that I can remove this polling each 200 ms by implementing a mechanism for registering multiples event handlers that are called by ioProcessEvents. The SDL2DisplayPlugin registers an event handler in this places, which asks SDL2 for the presence of events and it signals VM Semaphore. However, since in this case I have control of the code in the external thread, I would like to just signal the VM Semaphore in this external thread to avoid this polling. So here is my question:<br><br></div>Is signaling a VM Semaphore thread safe? In case it is not, how much work would require to make it thread safe.<br><br></div>Best regards,<br></div>Ronie<br></div>