*** empty log message ***
This commit is contained in:
parent
bf062cc5fe
commit
235c778aef
2 changed files with 3 additions and 3 deletions
|
@ -119,7 +119,7 @@ int msgQueueIdIntern(
|
||||||
|
|
||||||
int msgQueueElemIdIntern(
|
int msgQueueElemIdIntern(
|
||||||
msgQueueElemId dest,
|
msgQueueElemId dest,
|
||||||
msgQueueId src
|
msgQueueId src,
|
||||||
int counter){
|
int counter){
|
||||||
if (strlen(src)>MSGSPACE_ID_LEN){
|
if (strlen(src)>MSGSPACE_ID_LEN){
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -78,8 +78,8 @@ typedef struct MsgQueueElem {
|
||||||
typedef struct MsgQueue {
|
typedef struct MsgQueue {
|
||||||
msgQueueId id;
|
msgQueueId id;
|
||||||
int elemCounter;
|
int elemCounter;
|
||||||
msgQueueElemId head;
|
msgQueueElemId headId;
|
||||||
msgQueueElemId tail;
|
msgQueueElemId tailId;
|
||||||
} msgQueue;
|
} msgQueue;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue