repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: cygtls: rename sig to current_sig
[newlib-cygwin.git]
/
winsup
/
cygwin
/
local_includes
/
mmap_alloc.h
blob
86a42aee1c22c6416da46bef382f89f629dfdf66
1
#include
"memory_layout.h"
2
3
class
mmap_allocator
4
{
5
caddr_t mmap_current_low
;
6
7
public
:
8
mmap_allocator
() :
mmap_current_low
((
caddr_t
)
MMAP_STORAGE_HIGH
) {}
9
10
PVOID
alloc
(
PVOID in_addr
,
SIZE_T in_size
,
bool
fixed
);
11
};
12
13
extern
mmap_allocator mmap_alloc
;