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 that defines a message */ struct msgbuf{ long mtype; /* must be positive */ int childId; //ID of child sending message ...