*** empty log message ***
This commit is contained in:
parent
764eaa5e21
commit
e10b3ae8c4
1 changed files with 12 additions and 0 deletions
12
src/iface.h
12
src/iface.h
|
@ -67,5 +67,17 @@ typedef struct MsgSpaceList {
|
||||||
msgSpaceListElemId last;
|
msgSpaceListElemId last;
|
||||||
} msgSpaceList;
|
} msgSpaceList;
|
||||||
|
|
||||||
|
typedef struct MsgQueueElem {
|
||||||
|
int poolIndex;
|
||||||
|
int bufferIndex;
|
||||||
|
msgQueueElemId next;
|
||||||
|
} msgQueueElem;
|
||||||
|
|
||||||
|
typedef struct MsgQueue{
|
||||||
|
int elemCounter;
|
||||||
|
msgQueueElemId head;
|
||||||
|
msgQueueElemId tail;
|
||||||
|
} msgQueue;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
/* */
|
/* */
|
||||||
|
|
Loading…
Reference in a new issue