ObjectPool/README.md

11 lines
472 B
Markdown
Raw Permalink Normal View History

2019-05-25 15:26:21 +00:00
# ObjectPool
2019-05-25 15:58:02 +00:00
A simple, lock-free object pool
2019-05-25 16:00:36 +00:00
The `main.cpp` runs the gtests I created for another application, but without gtest, using some simple macros to use C++'s asserts (make sure you compile in debug mode if you want to make use of them). You can move the tests your application's gtest tests.
2019-05-25 15:58:02 +00:00
The library is header only. Just copy it to your project and use it.
2019-05-25 15:59:06 +00:00
This library requires boost::lockfree to operate.
2019-05-25 15:58:02 +00:00
MIT licensed. Do whatever you want with it :-)