
Your isolated processes lack efficient primitives for Inter Process Communication (IPC). One such mechanism for synchronous notification is provided by send
-receive
-reply
, which has a clear hierarchy and therefore avoids deadlock situations with two threads sending each other at the same time.
You have to implement the following system calls:
sbuffer
with the length ssize
synchronously to the process with the PID pid
. This operation blocks until the recipient has received the message with recv()
, processed and sent an answer using reply()
. This response is stored in rbuffer
, with the maximum buffer size rsize
.buffer
up to a maximum length of size
bytes. The return value contains the process identification (PID) of the sender.pid
. This function should not block and only success if the target process has already performed a corresponding send()
to this process and is waiting for its completion.You should extensively test your implementation. The fork
system call can be an important assistant for this purpose.
Nevertheless, we provide an additional test case for you:
Due to the fork()
calls, this application will split into four pairs of threads. In each pair, one thread (parent) will wait for a message while the other thread (child) sends the message. The parent thread then calculates a value from the message and sends the buffer back.
On correct implementation of the system calls above, the output of this test application should be similar to:
The lines can appear in any order. The two letters following REPLY:
depend on your implementation of the process identification assignment. However, on a single line those two letters must be equal!