Home
last modified time | relevance | path

Searched refs:msgq (Results 1 – 1 of 1) sorted by relevance

/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dsysmsg.c13 int msgq = msgget(IPC_PRIVATE, 0666); in main() local
14 if (msgq == -1) perror("msgget:"); in main()
15 assert(msgq != -1); in main()
25 int res = msgsnd(msgq, &msg, MSG_BUFLEN, IPC_NOWAIT); in main()
28 msgctl(msgq, IPC_RMID, NULL); in main()
33 ssize_t len = msgrcv(msgq, &rcv_msg, MSG_BUFLEN, msg.mtype, IPC_NOWAIT); in main()
37 msgctl(msgq, IPC_RMID, NULL); in main()