l3.libnazgul/src/nzg_iface.h

35 lines
562 B
C
Raw Normal View History

2019-09-16 15:15:37 +00:00
#ifndef _NZG_IFACE
#define _NZG_IFACE 1
2020-03-03 22:42:59 +00:00
#include "nzg_global.h"
#define MSGSPACE_DEFAULT_MODE 0600
2004-02-16 21:25:11 +00:00
2019-09-16 14:43:39 +00:00
typedef char * msgSpaceId;
typedef char * msgSpaceListElemId;
typedef char * msgSpacePoolDataId;
typedef char * msgSpacePoolId;
typedef char * msgSpaceQueueDataId;
typedef char * msgSpaceQueueId;
2019-09-16 14:43:39 +00:00
typedef struct MsgPool {
} msgPool;
typedef struct MsgSpace {
} msgSpace;
2004-02-16 21:25:11 +00:00
2019-09-16 15:15:37 +00:00
typedef struct MsgSpaceListElem {
void * id;
int ownerPid;
/* struct msgSpaceListElem * next; */
msgSpaceListElemId next;
} * msgSpaceList, msgSpaceListElem;
2004-02-16 21:25:11 +00:00
2019-09-16 15:15:37 +00:00
#endif
2004-02-16 21:25:11 +00:00
/* */