免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1273 | 回复: 0
打印 上一主题 下一主题

帮忙看下,消息队列通信问题错在哪??? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-05-04 20:20 |只看该作者 |倒序浏览
本帖最后由 古兮之 于 2010-05-04 20:21 编辑

#include<sys/types.h>
#include<stdio.h>
#include<sys/ipc.h>
#include<sys/msg.h>
#include<string.h>
#include<unistd.h>
#define MSGKEY 75
struct msgbuf {
               long mtype;       /* message type, must be > 0 */
               char mtext[3];    /* message data */
           };
int main(){
        pid_t pid , pid_1;
        int msg_queue_ID,msgtyp=10;
        struct msgbuf *msgp,*msgsend;
        pid = fork();
        if(pid > 0){
                sleep(1);
                 while((pid_1 = fork())==-1);
                printf("fork 成功!\n");
                if(pid_1==0){
                        //client
                        printf("ok");//!这里不执行,进不去!!!!不知道为何原因
                        msg_queue_ID = msgget(MSGKEY,IPC_CREAT|0666);
                        msgsend->mtext[0]='a';
                        msgsend->mtext[1]='b';
                        msgsend->mtext[2]='c';
                        int i = 10;
                        while(i>=1){
                                msgsend->mtype=i;
                                msgtyp = i;
                                if(msgsnd(msg_queue_ID,msgsend,strlen(msgsend->mtext)+1,0)){
                                                printf("send error!\n");
                                }else{
                                        printf("Client has sent message to Server---type %d!\n",msgtyp);
                                }
                                i--;
                                }
                        _exit(0);
                }
        }else if(pid == 0){
                //server 接受消息
                printf("aaaa");
                msg_queue_ID = msgget(MSGKEY,IPC_CREAT|0666);
                if(msgtyp==1){
                        //取消该队列
                        struct msqid_ds *buf ;
                        msgctl(msg_queue_ID,IPC_RMID,buf);
                        _exit(0);
                }else{
                        if(msgrcv(msg_queue_ID,msgp,1024,3,0)){
                                printf("Server has received message from Client!\n");
                        }
                }
        }
        wait(NULL);
        return 0;
}

谢谢大家了,看了好久。。。也没个头绪。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP