msgqueue.h


/*************************************************************************
*                                                                        *
*   Header: msgqueue.h                                                   *
*                                                                        *
*   realizzato dal Gruppo 17 di Lab2 Anno Accademico 1995/96             *
*                                                                        *
*   Lorenzo     Claudio       Valerio    Riccardo    Emiliano            *
*   Coronati    Lanconelli    Paolini    Solmi       Trentini            *
*                                                                        *
**************************************************************************/

#ifndef _MSGQ_H
#define _MSGQ_H

#include "thrqueue.h"

typedef struct  msg_t {
    struct  msg_t *m_next;
    struct thr_t *m_sender;
    int m_message;
}  msg_t;

#endif


[INDICE CODICE]