*** empty log message ***

This commit is contained in:
glenux 2004-02-23 21:35:16 +00:00 committed by Glenn Y. Rolland
parent bf062cc5fe
commit 235c778aef
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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