msgop (2) Linux Manual Page
NAME msgrcv, msgsnd – System V message queue operations SYNOPSIS #include <sys/ipc.h> #include <sys/msg.h> #include <sys/types.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); DESCRIPTION The msgsnd() and msgrcv() system calls are used to send messages to, and receive messages from, a…
