Cygwin: cygtls: rename sig to current_sig
[newlib-cygwin.git] / winsup / cygwin / local_includes / mmap_alloc.h
blob86a42aee1c22c6416da46bef382f89f629dfdf66
1 #include "memory_layout.h"
3 class mmap_allocator
5 caddr_t mmap_current_low;
7 public:
8 mmap_allocator () : mmap_current_low ((caddr_t) MMAP_STORAGE_HIGH) {}
10 PVOID alloc (PVOID in_addr, SIZE_T in_size, bool fixed);
13 extern mmap_allocator mmap_alloc;