l3.libnazgul/src/queueClose.c

18 lines
244 B
C
Raw Normal View History

2004-02-23 20:31:00 +00:00
#include "libnazgul.h"
#include "ids.h"
2020-03-03 23:06:43 +00:00
int msgQueueClose(msgQueue * queue)
{
msgQueueId qId;
strcpy(qId, queue->id);
2004-02-23 20:31:00 +00:00
2020-03-03 23:06:43 +00:00
if (munmap(queue, sizeof(msgQueue)) < 0) {
NZG_ERROR("unmap", qId);
goto ERROR;
}
return 0;
ERROR:
return -1;
2004-02-23 20:31:00 +00:00
}