remove shit comment
This commit is contained in:
@@ -37,7 +37,7 @@ int main(int argc, char **argv) {
|
||||
mq_unlink(replyq);
|
||||
struct mq_attr attr;
|
||||
memset(&attr, 0, sizeof(attr));
|
||||
attr.mq_maxmsg = 10; // также укладываемся в лимит
|
||||
attr.mq_maxmsg = 10;
|
||||
attr.mq_msgsize = sizeof(rep_msg_t);
|
||||
mqd_t qrep = mq_open(replyq, O_CREAT | O_RDONLY, 0666, &attr);
|
||||
if (qrep == (mqd_t) -1) {
|
||||
|
||||
Reference in New Issue
Block a user