monero/contrib/epee
Jeffrey 17772ef53e Eliminate dependence on boost::interprocess #8223
In this repo, `boost::interprocess` was being used soley to make `uint32_t` operations atomic. So I replaced each instance of
`boost::interprocess::ipcdetail::atomic(...)32` with `std::atomic` methods. I replaced member declarations as applicable. For example,
when I needed to change a `volatile uint32_t` into a `std::atomic<uint32_t>`. Sometimes, a member was being used a boolean flag, so
I replaced it with `std::atomic<bool>`.

You may notice that I didn't touch `levin_client_async.h`. That is because this file is entirely unused and will be deleted in PR monero-project#8211.

Additional changes from review:
* Make some local variables const
* Change postfix operators to prefix operators where value was not need
2022-03-30 13:18:32 -05:00
..
demo cmake: set 3.5 as minimum version 2021-04-27 11:02:05 +02:00
include Eliminate dependence on boost::interprocess #8223 2022-03-30 13:18:32 -05:00
src Merge pull request #8016 2021-11-01 12:28:28 -05:00
tests cmake: set required C/C++ standard to 11 2021-09-16 10:44:25 +02:00
CMakeLists.txt Update copyright year to 2020 2020-05-06 22:36:54 -04:00
LICENSE.txt year updated in license 2015-01-02 18:52:46 +02:00
README.md year updated in license 2015-01-02 18:52:46 +02:00

epee - is a small library of helpers, wrappers, tools and and so on, used to make my life easier.