![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Thread-safe class to keep track of locked (ie, non-swappable) memory pages. More...
#include <allocators.h>
Public Member Functions | |
LockedPageManagerBase (size_t page_size) | |
void | LockRange (void *p, size_t size) |
void | UnlockRange (void *p, size_t size) |
int | GetLockedPageCount () |
Private Types | |
typedef std::map< size_t, int > | Histogram |
Private Attributes | |
Locker | locker |
boost::mutex | mutex |
size_t | page_size |
size_t | page_mask |
Histogram | histogram |
Thread-safe class to keep track of locked (ie, non-swappable) memory pages.
Memory locks do not stack, that is, pages which have been locked several times by calls to mlock() will be unlocked by a single call to munlock(). This can result in keying material ending up in swap when those functions are used naively. This class simulates stacking memory locks by keeping a counter per page.
Definition at line 45 of file allocators.h.
|
private |
Definition at line 114 of file allocators.h.
|
inline |
Definition at line 48 of file allocators.h.
|
inline |
Definition at line 103 of file allocators.h.
|
inline |
Definition at line 57 of file allocators.h.
|
inline |
Definition at line 80 of file allocators.h.
|
private |
Definition at line 115 of file allocators.h.
|
private |
Definition at line 110 of file allocators.h.
|
private |
Definition at line 111 of file allocators.h.
|
private |
Definition at line 112 of file allocators.h.
|
private |
Definition at line 112 of file allocators.h.