Hi all,
I have to implement some mechanism in C on SOLARIS 9 SPARC in order to allow interprocess communication.
In a nutshell, i have to implement a multithread program where the father of the thread once receive a signal, or whatever you want, has to trigger a set of thread that are in charge of encrypting files.
I cannot use some TCP socket solution to communicate with this program.
I was thinking on using system signals (and triggering the process by kill -s SIGNAL PID) or by domain unix socket.
What do you think? Can you suggest me some other solutions?