嵌入式开发C语言学习day29-华清作业8.6

思维导图


作业

// 使用消息队列完成两个进程间的互相通信
#include <myhead.h>
struct msbuf
{
    long mtype;
    char mtext[1024];
};

int main(int argc, char const *argv[])
{
    // 创建子进程
    pid_t pid = fork();
    if (pid == -1)
    {
        perror("pid1 fork error");
        return -1;
    }
    // 父进程
    if (pid > 0)
    {
        //  key
        key_t key1 = ftok("/", 'k');
        //  消息队列
        int id = msgget(key1, IPC_CREAT | 0664);
        if (id == -1)
        {
            perror("msgget error");
            return -1;
        }
        //  写入
        struct msbuf buf;
        while (1)
        {
            printf("请输入消息的类型:");
            scanf("%ld", &buf.mtype);
            getchar();
            printf("请输入要发送的消息:");
            fgets(buf.mtext, sizeof(buf.mtext), stdin);
            buf.mtext[strlen(buf.mtext) - 1] = 0;
            msgsnd(id, &buf, sizeof(buf.mtext), 0);
        }
        sleep(1);
        //  删除
        if (msgctl(id, IPC_RMID, NULL) == -1)
        {
            perror("msgctl error");
        }
    }
    else if (pid == 0)
    {
        //  key
        key_t key1 = ftok("/", 'a');
        //  消息队列
        int id = msgget(key1, IPC_CREAT | 0664);
        if (id == -1)
        {
            perror("msgget error");
            return -1;
        }
        //  读取
        struct msbuf buf;
        while (1)
        {
            msgrcv(id, &buf, sizeof(buf.mtext), 0, 0);
            printf("\n");
            printf("收到的消息为:%s \n", buf.mtext);
        }
        //  删除
        if (msgctl(id, IPC_RMID, NULL) == -1)
        {
            perror("msgctl error");
        }
    }

    return 0;
}
// 使用消息队列完成两个进程间的互相通信
#include <myhead.h>
struct msbuf
{
    long mtype;
    char mtext[1024];
};
int main(int argc, char const *argv[])
{
    // 创建子进程
    pid_t pid = fork();
    if (pid == -1)
    {
        perror("pid1 fork error");
        return -1;
    }
    if (pid == 0)
    {
        //  key
        key_t key1 = ftok("/", 'a');
        //  消息队列
        int id = msgget(key1, IPC_CREAT | 0664);
        if (id == -1)
        {
            perror("msgget error");
            return -1;
        }
        //  写入
        struct msbuf buf;
        while (1)
        {
            printf("请输入消息的类型:");
            scanf("%ld", &buf.mtype);
            getchar();
            printf("请输入要发送的消息:");
            fgets(buf.mtext, sizeof(buf.mtext), stdin);
            buf.mtext[strlen(buf.mtext) - 1] = 0;
            msgsnd(id, &buf, sizeof(buf.mtext), 0);
        }
        //  删除
        if (msgctl(id, IPC_RMID, NULL) == -1)
        {
            perror("msgctl error");
        }
    }
    // 父进程
    else if (pid > 0)
    {
        //  key
        key_t key1 = ftok("/", 'k');
        //  消息队列
        int id = msgget(key1, IPC_CREAT | 0664);
        if (id == -1)
        {
            perror("msgget error");
            return -1;
        }
        //  读取
        struct msbuf buf;
        while (1)
        {
            msgrcv(id, &buf, sizeof(buf.mtext), 0, 0);
            printf("\n");
            printf("收到的消息为:%s \n", buf.mtext);
        }
        sleep(1);
        //  删除
        if (msgctl(id, IPC_RMID, NULL) == -1)
        {
            perror("msgctl error");
        }
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值