if((msgid=msgget((key_t)SHARE_KEY,IPC_CREAT|IPC_EXCL|00666))==-1) { printf("Creat Message Queue Error:%s\a\n",strerror(errno));return -1;} printf("msgid=%d\n",msgid);复制代码 返回值msgid等于0,所以我用以下代码发送时失败 define PERM S_IRUSR|S_IWUSR if ((msgid ...