*** empty log message ***
This commit is contained in:
parent
39205742fd
commit
2eadee7153
2 changed files with 19 additions and 1 deletions
15
src/ids.c
15
src/ids.c
|
@ -87,5 +87,20 @@ int msgBufferInfoTabIdIntern(
|
|||
return 0;
|
||||
}
|
||||
|
||||
int msgQueueSemIdIntern(
|
||||
msgQueueSemId dest,
|
||||
msgSpaceId externId,
|
||||
int queueIdx){
|
||||
if (strlen(externId)>MSGSPACE_ID_LEN){
|
||||
return -1;
|
||||
}
|
||||
#ifdef _NZG_REALFILEID
|
||||
sprintf(dest,"/tmp/nzgQueue-%s-%d",(char *)externId,queueIdx);
|
||||
#else
|
||||
sprintf(dest,"/nzgQueue-%s-%d",(char *)externId,queueIdx);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -8,6 +8,9 @@ int msgSpaceIdIntern(msgSpaceId dest, const msgSpaceId src);
|
|||
int msgPoolSemIdIntern(msgPoolSemId destSemId, const msgSpaceId srcPoolId, int poolIdx);
|
||||
int msgPoolDataIdIntern(msgPoolDataTabId dest, const msgSpaceId src);
|
||||
int msgPoolIdIntern(msgPoolId dest,msgPoolId src, int num);
|
||||
|
||||
int msgQueueSemIdIntern(
|
||||
msgQueueSemId dest,
|
||||
msgSpaceId externId,
|
||||
int queueIdx);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue