FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sidecoin/src/allocators.cpp at master · superstacked/sidecoin · GitHub
superstacked
/
sidecoin
Public
forked from
glaspe/sidecoin
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
sidecoin
/
src
/
allocators.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
68 lines (60 loc) · 1.79 KB
Breadcrumbs
sidecoin
/
src
/
allocators.cpp
Copy path
File metadata and controls
68 lines (60 loc) · 1.79 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
Copyright (c) 2009-2013 The Bitcoin developers
//
Copyright (c) 2014 Joey Krug and Jack Peterson
//
Distributed under the MIT/X11 software license, see the accompanying
//
file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
include
"
allocators.h
"
#
ifdef
WIN32
#
ifdef
_WIN32_WINNT
#
undef
_WIN32_WINNT
#
endif
#
define
_WIN32_WINNT
0x0501
#
define
WIN32_LEAN_AND_MEAN
1
#
ifndef
NOMINMAX
#
define
NOMINMAX
#
endif
#
include
<
windows.h
>
//
This is used to attempt to keep keying material out of swap
//
Note that VirtualLock does not provide this as a guarantee on Windows,
//
but, in practice, memory that has been VirtualLock'd almost never gets written to
//
the pagefile except in rare circumstances where memory is extremely low.
#
else
#
include
<
sys/mman.h
>
#
include
<
limits.h
>
//
for PAGESIZE
#
include
<
unistd.h
>
//
for sysconf
#
endif
LockedPageManager* LockedPageManager::_instance =
NULL
;
boost::once_flag LockedPageManager::init_flag =
BOOST_ONCE_INIT
;
/*
* Determine system page size in bytes
*/
static
inline
size_t
GetSystemPageSize
()
{
size_t
page_size;
#
if
defined(WIN32)
SYSTEM_INFO
sSysInfo
;
GetSystemInfo
(&
sSysInfo
);
page_size =
sSysInfo
.
dwPageSize
;
#
elif
defined(PAGESIZE)
//
defined in limits.h
page_size =
PAGESIZE
;
#
else
//
assume some POSIX OS
page_size =
sysconf
(_SC_PAGESIZE);
#
endif
return
page_size;
}
bool
MemoryPageLocker::Lock
(
const
void
*addr,
size_t
len)
{
#
ifdef
WIN32
return
VirtualLock
(
const_cast
<
void
*>(addr), len);
#
else
return
mlock
(addr, len) ==
0
;
#
endif
}
bool
MemoryPageLocker::Unlock
(
const
void
*addr,
size_t
len)
{
#
ifdef
WIN32
return
VirtualUnlock
(
const_cast
<
void
*>(addr), len);
#
else
return
munlock
(addr, len) ==
0
;
#
endif
}
LockedPageManager::LockedPageManager
() : LockedPageManagerBase<MemoryPageLocker>(GetSystemPageSize())
{
}
Back
|
FazBrowse Home
|
New Git URL