An open API service indexing awesome lists of open source software.

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

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