I am pretty new to programming on linux. I am trying to implement a msg queue in one of my assignments. But I am not able to do it. The code is as follows :

#include <stdio.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <linux/sched.h>
#include <stdlib.h>
#include <string.h>

typedef long MSISDN;
typedef struct 
{
   long mtype;
   long mtext;
}msgbuf;

void init(int qid,int key) {
   qid = msgget(key,IPC_CREAT|0666);
}

void sendMsg(long t_ype, long buf, int len, int qid) {

   int length = sizeof(long) + sizeof(MSISDN);
   msgbuf *p = malloc(length);
   p->mtype = t_ype;
   fputc('2',stderr);
   void* tosend = (void*) buff;
   fputc('3',stderr);

   memcpy(p->mtext,tosend,length);

   fputc('4',stderr);
   msgsnd(qid,p,length,IPC_NOWAIT);
   free(p);
}



void main()
{
   int qid;
   int key = 1111;
   int len= sizeof(MSISDN); 
   long type_1=1;
   long send = 12345;

   init(qid,key);
   fputc('1',stderr);
   sendMsg(type_1,send,len,qid);

   getchar();
}

The problem is memcpy is not working . I am getting a warning : warning: passing argument 1 of ‘memcpy’ makes pointer from integer without a cast [enabled by default]

Also when i run the code it gets a SIGSEGV signal at the memcpy.... I think I am not getting the typecast correctly .... any help will much appreciated....

link|improve this question
2  
Argument 1 of memcpy is an address to copy to (a pointer to an address more specifically). try &(p->mtext). Check out the Man Page on Memcpy. – Chad Feb 15 at 17:50
This message ("makes pointer from integer without a cast") does not mean you should add a cast. In fact you should not add a cast, but get the correct pointers instead. – pmg Feb 15 at 17:52
buff isn't defined anywhere... – sth Feb 15 at 17:53
feedback

1 Answer

up vote 5 down vote accepted

It's not the typecast, it's the argument itself. p->mtext is a long, not a pointer. You need to send the address of p->mtext as the dest argument to memcpy. You're getting the segfault because memcpy is trying to write to the memory address pointed to by p->mtext, which is clearly not in your process' address space.

That's the reason - since this is a homework assignment, I'll leave the fixing of the code up to you.

link|improve this answer
Thanks a lot guys ..... its working now ..... :) – anshu Feb 15 at 17:58
@anshu Anytime, welcome to Stack Overflow; and remember to accept the answer that solved your issue. – Chad Feb 15 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.