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.

19 lines
337 B
C

#include <sys/types.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h>
#include <sys/mman.h>
#include "open.h"
#endif
#include "mmap.h"
int mmap_unmap(const char* mapped,size_t maplen) {
#ifdef _WIN32
(void)maplen;
return UnmapViewOfFile(mapped)?0:-1;
#else
return maplen ? munmap((char*)mapped,maplen) : 0;
#endif
}