*** empty log message ***

This commit is contained in:
glenux 2004-02-23 21:34:44 +00:00 committed by Glenn Y. Rolland
parent 0682b592e4
commit bf062cc5fe

View file

@ -117,6 +117,16 @@ int msgQueueIdIntern(
return 0;
}
int msgQueueElemIdIntern(
msgQueueElemId dest,
msgQueueId src
int counter){
if (strlen(src)>MSGSPACE_ID_LEN){
return -1;
}
sprintf(dest,"%s-%d",(char *)src,counter);
return 0;
}
#endif