I'm writing to message queue
if (msgsnd(q, &msg, sizeof(message), slaves_list[to]) == -1)
and reading
if (msgrcv(q, &msg, sizeof(message), id, 0) == -1)
but what if this queue is empty? How to check that? If there is nothing I want execute next instruction in the loop