You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to understand the Signal interface to send messages between processes/threads, but not sure where to start.
Would you have a minimal example?
The text was updated successfully, but these errors were encountered:
The signal interface in InterProcessCommunication is very primitive. As a general rule, it provides calls to C functions related to POSIX signals. Depending on the kind of messages, POSIX signals may not be appropriate if you want to send messages between processes/threads. You may consider shared memory and mutexes or semaphores (which are provided by this package) or pipes or sockets (which are provided by Julia).
Hello! Thanks for the package!
I'm trying to understand the
Signal
interface to send messages between processes/threads, but not sure where to start.Would you have a minimal example?
The text was updated successfully, but these errors were encountered: