QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1104|回复: 3

dereferencing pointer ...错误

[复制链接]
发表于 2005-4-24 20:16:58 | 显示全部楼层 |阅读模式
编译《linux程序设计权威》指南时,碰到“dereferencing pointer to incomplete type”错误提示。是少包含了头文件吗?请指点。谢谢!

编译方法:gcc -o private private.c
源码为:(private.c)

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

int main(int argc, char* argv[])
{
        int queue_id;
        struct msgbuf *msg;
        struct msgbuf *recv_msg;
        int rc;

        //建立消息队列
        queue_id = msgget(IPC_PRIVATE, IPC_CREAT | 0600);
        if (queue_id == -1) {
                perror("main: msgget");
                exit(1);
        }
        printf("message queue created, queue id '%d'.\n", queue_id);

        //创建消息结构
        msg = (struct msgbuf*)malloc(sizeof(struct msgbuf *)
                +strlen("hello world"));
        msg->mtype = 1;  //<-------------这里出错

        strcpy(msg->mtext, "hello world");//<-------------这里出错

        //发送消息
        rc = msgsnd(queue_id, msg, strlen(msg->mtext)+1, 0);//<-------------这里出错
        if (rc == -1) {
                perror("main: msgsnd");
                exit(1);
        }
        free(msg);
        printf("message placed on the queue successfully.\n");

        //接收消息
        recv_msg = (struct msgbuf*)malloc(sizeof(struct msgbuf)
                +strlen("hello world"));
        rc = msgrcv(queue_id, recv_msg, strlen("hello world")+1, 0, 0);
        if (rc == -1) {
                perror("main: msgrcv");
                exit(1);
        }
        printf("msgrcv: received message: mtype '%d'; mtext '%s'\n",
                recv_msg->mtype, recv_msg->mtext);      //<-------------这里出错

        return 0;
}
发表于 2005-4-24 22:32:44 | 显示全部楼层
struct msgbuf {}是哪里定义的?
回复

使用道具 举报

 楼主| 发表于 2005-4-25 08:57:57 | 显示全部楼层
struct msgbuf {}是<sys/msg.h>中定义的,需要条件编译。
回复

使用道具 举报

发表于 2005-4-26 16:05:04 | 显示全部楼层
msgbuf要自己定义

sys/msg.h里给出的是定义方法。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-6 03:44 , Processed in 0.034506 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表