在msg队列上进行通信时出错

时间:2014-02-10 09:37:02

标签: c linux unix msg msgrcv

我创建了一个消息队列,但是当助理将消息发送给他的客户端时,客户端收到错误的号码:-1081388352。这是我发送的每个号码。 在msgget期间没有错误,甚至在msgcrv或msgsnd中都没有错误。 发送代码:

key_t chiave_ac = ftok("prenotazione.c", 'M');
    if(chiave_ac == -1){
        perror("ftock");
        exit(EXIT_FAILURE);
    }
    int coda_ac = msgget(chiave_ac, IPC_CREAT | 0642);
    if(coda_ac == -1){
        perror("msgget");
        exit(EXIT_FAILURE);
    }

if (msgsnd(coda_ac, &m, sizeof(messaggio)-sizeof(long), 0) == -1) {
            perror("msgsnd");
            exit(EXIT_FAILURE);
}

Recivied:

key_t chiave_ac = ftok("prenotazione.c", 'M');
    if(chiave_ac == -1){
        printf("Errore nel generare la chiaveAC \n");
        perror("ftok");
        exit(1);
    }
    int id_ac  = msgget(chiave_ac, 0);
    if (id_ac == -1){
        perror("msgget ac");
        exit(EXIT_FAILURE);
    }
if( msgrcv(id_ac, &risp, sizeof(messaggio)-sizeof(long), getpid(), 0) == -1){
                    printf("errore ricezione \n");
                    fflush(stdout);
}

我做错了什么?某些国旗有错误吗?


[补充评论:]

typedef struct
{
  long type; 
  int pid; 
  scelta tipo; 
  int aula; 
  int giorno; 
  bool finito; 
} messaggio;

0 个答案:

没有答案