https://github.com/bruce-lee-ly/memory_pool
Simple and efficient memory pool is implemented with C++11.
https://github.com/bruce-lee-ly/memory_pool
cpp11 memory-block memory-chunk memory-pool
Last synced: 17 days ago
JSON representation
Simple and efficient memory pool is implemented with C++11.
- Host: GitHub
- URL: https://github.com/bruce-lee-ly/memory_pool
- Owner: Bruce-Lee-LY
- License: mit
- Created: 2022-05-22T14:37:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-02T13:40:10.000Z (over 3 years ago)
- Last Synced: 2024-11-15T21:11:52.535Z (11 months ago)
- Topics: cpp11, memory-block, memory-chunk, memory-pool
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 6
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Memory Pool
Simple and efficient memory pool is implemented with C++11.# Compile
## Environment
- OS: Linux
- Cmake Version: >= 3.8
- GCC Version: >= 4.8## Clone
```
git clone https://github.com/Bruce-Lee-LY/memory_pool.git
```## Build
```
cd memory_pool
./build.sh -t Release -b OFF
./build.sh -t Debug -b ON
```# Run Sample
```
./run_sample.sh
```