进程和线程 2024.8.14

//写

#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <string.h>

#define SIZE 1024


//用消息队列的IPC发送消息

typedef struct
{
    long mytype;
    char mtext[SIZE];
}BUF;

int main(int argc, const char *argv[])
{
    //1.创建key值
    key_t key = ftok("./",0);
    if(key == -1)
    {
        printf("create key fail");
        return -1;
    }

    //2.创建消息队列
    int msgid = msgget(key, IPC_CREAT | 0777);
    if(msgid == -1)
    {
        printf("create msgid fail");
        return -1;
    }

    BUF buf;
    long tag;

    printf("Please enter an TAG\n");
    scanf("%ld",&tag);    
    buf.mytype = tag;
    getchar();


    //3.通过消息队列发送
    while(1)
    {
        memset(buf.mtext,0,SIZE);

        //消息从键盘获取
        printf("Please enter a message\n");

        fgets(buf.mtext,SIZE,stdin);//以回车结尾

        int snd = msgsnd(msgid, &buf,sizeof(buf),0);
        if(snd == -1)
        {
            printf("snde fail");
        }
        if(strcmp(buf.mtext, "bye\n") == 0)
        {
            break;
        }
    }


    return 0;
}

//读
#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <string.h>

#define SIZE 1024            


//用消息队列rcv消息

typedef struct
{
    long mytype;
    char mtext[SIZE];
}BUF;

int main(int argc, const char *argv[])
{
    //1.创建key值
    key_t key = ftok("./",0);
    if(key == -1)
    {
        printf("create key fail");
        return -1;
    }

    //2.创建消息队列
    int msgid = msgget(key, IPC_CREAT|0777);
    if(msgid == -1)
    {                                                    
        printf("create msgid fail");
        return -1;
    }

    BUF buf;
    long tag;

    printf("Please enter an TAG\n");
    scanf("%ld",&tag);


    //3.通过消息队列接收
    while(1)
    {
        memset(buf.mtext,0,SIZE);
        ssize_t rcv = msgrcv(msgid,&buf,sizeof(buf),tag,0);
        if(rcv == -1)
        {
            printf("rcv fail");
        }
        if(strcmp(buf.mtext, "bye\n") == 0)
        {
            break;
        }

        printf("MSG:%s\n",buf.mtext);
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值