Tagged Questions
0
votes
1answer
598 views
IPC message queue. msgrcv system call. System V. how to get out of loop
I have a message queue from which I am getting messages in a loop. The problem is that I don't know how to exit the loop. msgrcv returns type size_t so it keeps going. What value should I compare the ...
0
votes
2answers
930 views
message queue. msgsend msgrcv. System V IPC system calls in C (Linux)
Hi I'm working with some shared memory where different processes read and write data. I'm using a message queue to store messages of when data has changed between read and write operations.
/* struct ...