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....
memcpyis 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:50buffisn't defined anywhere... – sth Feb 15 at 17:53