https://github.com/cjhdev/buffer_pool_example
Fixed size static allocated buffer pool in C++11
https://github.com/cjhdev/buffer_pool_example
Last synced: about 1 year ago
JSON representation
Fixed size static allocated buffer pool in C++11
- Host: GitHub
- URL: https://github.com/cjhdev/buffer_pool_example
- Owner: cjhdev
- Created: 2016-05-20T12:01:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-20T12:02:00.000Z (almost 10 years ago)
- Last Synced: 2025-01-21T03:42:36.171Z (about 1 year ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Fixed Size Static Allocated Buffer Pool in C++
A demonstration of a fixed size buffer pool in C++11 that avoids dynamic memory allocation.
- See [buffer_pool.h](buffer_pool.h) for the buffer pool template
- See [app.cpp](app.cpp) for the buffer pool template being exercised
To build and run app.cpp, from terminal call `make`, then `./bin/app`.
## License
MIT
Copyright (c) 2016 Cameron Harper