Searched refs:prot (Results 1 – 4 of 4) sorted by relevance
/support/ |
A D | xmprotect.c | 24 xmprotect (void *addr, size_t length, int prot) in xmprotect() argument 26 if (mprotect (addr, length, prot) != 0) in xmprotect() 27 FAIL_EXIT1 ("mprotect (%p, %zu, 0x%x): %m", addr, length, prot); in xmprotect()
|
A D | xmmap.c | 24 xmmap (void *addr, size_t length, int prot, int flags, int fd) in xmmap() argument 26 void *result = mmap (addr, length, prot, flags, fd, 0); in xmmap() 29 length, prot, flags); in xmmap()
|
A D | support_stack_alloc.c | 70 int prot = PROT_READ | PROT_WRITE in support_stack_alloc() local 72 xmprotect (alloc_base + guardsize, stacksize, prot); in support_stack_alloc()
|
A D | xunistd.h | 80 void *xmmap (void *addr, size_t length, int prot, int flags, int fd); 81 void xmprotect (void *addr, size_t length, int prot);
|
Completed in 6 milliseconds