aboutsummaryrefslogtreecommitdiff
path: root/tests/sys_mman.h
blob: 7ac64d54c4d045636ac1b46ea1e53853ea04e147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Replacement for sys/mman.h which factors out platform differences.

#include <sys/mman.h>

#if defined(VGO_darwin)
#  define MAP_ANONYMOUS MAP_ANON
#endif


#include <assert.h>
#include <unistd.h>

// Map a page, then unmap it, then return that address.  That
// guarantees to give an address which will fault when accessed,
// without making any assumptions about the layout of the address
// space.

__attribute__((unused))
static void* get_unmapped_page(void)
{
   void* ptr;
   int r;
   long pagesz = sysconf(_SC_PAGE_SIZE);
   assert(pagesz == 4096 || pagesz == 65536);
   ptr = mmap(0, pagesz, PROT_READ, MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
   assert(ptr != (void*)-1);
   r = munmap(ptr, pagesz);
   assert(r == 0);
   return ptr;
}