消息队列(IPC)接收过程不在C中打印接收的数据

时间:2014-03-25 10:39:59

标签: c linux ipc message-queue

我在C linux中实现IPC的消息队列机制。以下是我的接收流程。它不打印收到的消息。我认为它生成了一个有效的msqid,而msgrcv函数的其他参数也是正确的。为什么这样?

//header files
#include"msgbuf.h"
int main()
{
   int msqid;
   key_t key;
   int msgflg = 0666;
   message_buf  *rbuf;
   rbuf=malloc(sizeof(*rbuf));
   rbuf->m=malloc(sizeof(M1));
   key = ftok("/home/user",12);
   if ((msqid = msgget(key, msgflg)) ==-1)
   {
        perror("msgget");
        exit(1);
   }
   printf("\n\n%d\n",msqid);  //working fine till here.
   /* Receive an answer of message type 1.   */
   if (msgrcv(msqid, &rbuf, sizeof(rbuf->m), 1, 0) < 0)
   {
        perror("msgrcv");
        exit(1);
   }
   /* Print the answer.  */
   printf("Received message text= %s\n", rbuf->m->cp);
   return 0;
}

现在msgbuf.h

typedef struct msgclient
{
  int msglen;
  int msgtype;
  char *cp;
}M1;


typedef struct msgbuf1
{
   long    mtype;
   M1      *m;
} message_buf;

2 个答案:

答案 0 :(得分:0)

if (msgrcv(msqid, &rbuf, sizeof(rbuf->m), 1, 0) < 0)

应该是

if (msgrcv(msqid, &rbuf, sizeof(struct message_buf), 1, 0) < 0)

答案 1 :(得分:0)

由于两个独立的进程有两个独立的内存区域,所以将指针传递给另一个进程是没有意义的,因为传递的指针(如果它在接收进程中指向任何东西)将不会指向它是什么指向原始过程。

您需要将M1中的char *cp;更改为字符数组,并在发送消息缓冲区之前将字符串复制到其中。指示字符串长度的长度字节也是可取的(但不一定是必需的)。