G
Guest
I need to use some kind of signaling among processes, but the only thing I
found that can something like that is the Mutex.
But the Mutex doesn’t have a real signaling, it only has Wait() and
Release(), the trouble is that the Wait returns not only if the Mutex is
released, but also if I’m the only one who created it or the only one that
has it, and that is not good for me.
I need to know if the other process signaled or not, regardless if he’s
running and if created it.
In C/C++ I could use the events, but in .NET is seems that the
AutoResetEvent and MnualResetEvent are for use among threads and not process.
Can anybody have an Idea how can I do that?
found that can something like that is the Mutex.
But the Mutex doesn’t have a real signaling, it only has Wait() and
Release(), the trouble is that the Wait returns not only if the Mutex is
released, but also if I’m the only one who created it or the only one that
has it, and that is not good for me.
I need to know if the other process signaled or not, regardless if he’s
running and if created it.
In C/C++ I could use the events, but in .NET is seems that the
AutoResetEvent and MnualResetEvent are for use among threads and not process.
Can anybody have an Idea how can I do that?