diff --git a/src/include/sys/mpi.h b/src/include/sys/mpi.h index 8d287ae..41d7737 100644 --- a/src/include/sys/mpi.h +++ b/src/include/sys/mpi.h @@ -32,12 +32,12 @@ #include -#define MESSAGE_LENGTH 128 +#define MESSAGE_LENGTH 248 struct mpiMessage { - struct mpiMessage *next; - uInt32 type; char data[MESSAGE_LENGTH]; + uInt32 type; + struct mpiMessage *next; }; typedef struct mpiMessage mpiMessage_t; @@ -53,6 +53,9 @@ /*** $Log$ + Revision 1.3 2004/05/26 15:39:22 reddawg + mpi: brought mpiDestroyMbox(char *name) in to the userland + Revision 1.2 2004/05/25 18:48:48 reddawg Userland now uses MESSAGE_LENGTH