| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Increment MIT Licence copyright header year on files modified in 2016 | isle2983 | 2016-12-31 | 1 | -1/+1 |
| | | | | | | | Edited via: $ contrib/devtools/copyright_header.py update . | ||||
| * | support: Add LockedPool | Wladimir J. van der Laan | 2016-10-27 | 1 | -8/+4 |
| | | | | | | | | | | | | | | | Add a pool for locked memory chunks, replacing LockedPageManager. This is something I've been wanting to do for a long time. The current approach of locking objects where they happen to be on the stack or heap in-place causes a lot of mlock/munlock system call overhead, slowing down any handling of keys. Also locked memory is a limited resource on many operating systems (and using a lot of it bogs down the system), so the previous approach of locking every page that may contain any key information (but also other information) is wasteful. | ||||
| * | Bump copyright headers to 2015 | MarcoFalke | 2015-12-13 | 2 | -2/+2 |
| | | |||||
| * | ensure consistent header comment naming conventions | Philip Kaufmann | 2015-04-20 | 2 | -6/+6 |
| | | | | | - BITCOIN_FOLDER_SUBFOLDER_FILENAME_H | ||||
| * | allocators: split allocators and pagelocker | Cory Fields | 2015-03-20 | 2 | -0/+110 |
| Pagelocker is only needed for secure (usually wallet) operations, so don't make the zero-after-free allocator depend on it. | |||||