*** 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(
msgQueueElemId dest,
msgQueueId src
msgQueueId src,
int counter){
if (strlen(src)>MSGSPACE_ID_LEN){
return -1;

View file

@ -78,8 +78,8 @@ typedef struct MsgQueueElem {
typedef struct MsgQueue {
msgQueueId id;
int elemCounter;
msgQueueElemId head;
msgQueueElemId tail;
msgQueueElemId headId;
msgQueueElemId tailId;
} msgQueue;
#endif