remove shit comment

This commit is contained in:
2025-11-26 16:50:56 +07:00
parent a1cf4b157d
commit 2b488e06eb

View File

@@ -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) {