Tagged Questions
The msgrcv tag has no wiki summary.
1
vote
3answers
152 views
Message Passing In C/Printing a char array from a struct in C
I created this program to pass a message to a parent process. I want the parent process to print out the message it receives. I'm not sure if this is an issue with reading the char array or message ...
0
votes
1answer
135 views
msgrcv getting blank messages
I have two programs that send and receives messages back and forth from each other via IPC queues. However, sometimes the msgrcv function will get a blank message instead of receiving what was ...
0
votes
1answer
327 views
UNIX message queue msgrcv failed to receive message
Dear Friends,
Any idea why the msgrcv is receiving a blank buffer?
Here is the code:
enter code here
#include <sys/msg.h>
#include <unistd.h>
#include <sys/types.h>
#include ...
0
votes
1answer
583 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
905 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 ...