l3.libnazgul/src/spaceListClose.c
2004-02-25 21:28:11 +00:00

18 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;
}