Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-04 | Copyright: Update to 2022 | mj-xmr | 1 | -1/+2 | |
2018-12-07 | mlocker: set default log category | moneromooo-monero | 1 | -0/+3 | |
2018-11-30 | mlocker: remove early page size log | moneromooo-monero | 1 | -1/+0 | |
It comes before the logger is initialized, so gets displayed even though it should not be by default, and apparenly comes too early for (some versions of) Android, where it crashes. | |||||
2018-11-26 | Only show a single mlock() error, to avoid flooding the log | Martijn Otto | 1 | -3/+12 | |
2018-11-22 | mlocker: fix access to global lock map after dtor on exit | moneromooo-monero | 1 | -2/+2 | |
as the lock, it now leaks | |||||
2018-11-20 | mlocker: don't throw from lock/unlock | moneromooo-monero | 1 | -0/+8 | |
This prevents exceptions from showing up in various awkward places such as dtors, since the only exception that can be thrown is a lock failure, and nothing handles a lock failure anyway. | |||||
2018-11-15 | various: do not propagate exception through dtor | moneromooo-monero | 1 | -1/+2 | |
Coverity 189689, 189690, 189692, 189695 | |||||
2018-11-02 | mlocker: fix dtor ordering problem | moneromooo-monero | 1 | -2/+2 | |
leak the mutex instead, it's a one off | |||||
2018-08-16 | common: add a class to safely wrap mlock/munlock | moneromooo-monero | 1 | -0/+182 | |
This class will allow mlocking small objects, of which there may be several per page. It adds refcounting so pages are only munlocked when the last object on that page munlocks. |