Reputation: 37
I have two processes running in different cores. I want to know what is the fastest way to pause and continue one process from another process.
Upvotes: 0
Views: 170
Reputation: 11
Well it really depends on the application and the type of communication you are looking for, so I will asume that what you want is indeed a blocking operation.
For that, I will go with Domain Sockets, they have blocking and non blocking operations and are very ease to use, with lot of examples. You can start here here in the oficial documentation for Linux.
The concept is the same for any other operating system, only the implementations could differ.
Upvotes: 1