17 lines
244 B
C
17 lines
244 B
C
#include "libnazgul.h"
|
|
#include "ids.h"
|
|
|
|
int msgQueueClose(msgQueue * queue)
|
|
{
|
|
msgQueueId qId;
|
|
strcpy(qId, queue->id);
|
|
|
|
if (munmap(queue, sizeof(msgQueue)) < 0) {
|
|
NZG_ERROR("unmap", qId);
|
|
goto ERROR;
|
|
}
|
|
|
|
return 0;
|
|
ERROR:
|
|
return -1;
|
|
}
|