17 lines
297 B
C
17 lines
297 B
C
#include "libnazgul.h"
|
|
#include "ids.h"
|
|
|
|
int msgSpaceListClose(msgSpaceList * list){
|
|
|
|
msgSpaceListId spaceListId;
|
|
strcpy(spaceListId,DEFAULT_MSGSPACELISTID);
|
|
|
|
if (munmap(list,sizeof(msgSpaceList)) < 0){
|
|
NZG_ERROR("unmap",spaceListId);
|
|
goto ERROR;
|
|
}
|
|
|
|
return 0;
|
|
ERROR:
|
|
return -1;
|
|
}
|