msgop (2) Linux Manual Page
msgrcv, msgsnd – System V message queue operations Synopsis#include <sys/types.h> #include <sys/ipc.h> #include <sys/msg.h> int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);DescriptionThe msgsnd() and msgrcv() system calls are used to send messages to, and receive messages from, a System V message queue….
