我已经实现了http://beej.us/guide/bgipc/output/html/multipage/mq.html第 7.6 节中的两个程序。
我已经扩展了它,以便有两个接收程序,它去哪一个是由消息类型决定的。
问题出现在接收程序B和C。他们应该每次都打印出输入程序A的消息,但他们只是每隔一次打印消息。
这是发送消息的地方,它读取前 6 个字符,如果是 URGENT 则设置消息类型。
buf.mtype = 2;
while(fgets(buf.mtext, sizeof buf.mtext, stdin) != NULL) {
int len = strlen(buf.mtext);
strncpy(typeTest, buf.mtext, 6);
if(strncmp(typeTest, "URGENT", 6) == 0){
buf.mtype = 1;
}
printf("This is the message %s \n", buf.mtext);
/* ditch newline at end, if it exists */
if (buf.mtext[len-1] == '\n') buf.mtext[len-1] = '\0';
if (msgsnd(msqid, &buf, len+1, 0) == -1) /* +1 for '\0' */
perror("msgsnd");
}
这是接收消息的地方,然后 if 语句检查类型然后打印出来。
for(;;) { /* Spock never quits! */
if (msgrcv(msqid, &buf, sizeof buf.mtext, 0, 0) == -1) {
perror("msgrcv");
exit(1);
}
if(buf.mtype == 2){
printf("spock: \"%s\"\n", buf.mtext);
}
}
谁能解释为什么它只打印出所有其他消息?
谢谢。