You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
469 B
C

16 years ago
#include <stdlib.h>
10 years ago
#ifndef __MINGW32__
#include <sys/mman.h>
10 years ago
#endif
#include <unistd.h>
16 years ago
#include "iarray.h"
static void freechain(iarray_page* p,size_t pagesize) {
while (p) {
iarray_page* n=p->next;
10 years ago
#ifdef __MINGW32__
free(p);
#else
munmap(p,pagesize);
10 years ago
#endif
p=n;
}
}
16 years ago
void iarray_free(iarray* ia) {
size_t i;
for (i=0; i<sizeof(ia->pages)/sizeof(ia->pages[0]); ++i) {
freechain(ia->pages[i],ia->bytesperpage);
ia->pages[i]=0;
}
16 years ago
}