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.
28 lines
465 B
C
28 lines
465 B
C
#include <stdlib.h>
|
|
#ifndef _WIN32
|
|
#include <sys/mman.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
#include "iarray.h"
|
|
|
|
static void freechain(iarray_page* p,size_t pagesize) {
|
|
while (p) {
|
|
iarray_page* n=p->next;
|
|
#ifdef _WIN32
|
|
free(p);
|
|
#else
|
|
munmap(p,pagesize);
|
|
#endif
|
|
p=n;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|