We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bce888d + 1db93bb commit c5a6758Copy full SHA for c5a6758
README.md
@@ -3,11 +3,16 @@
3
4
Dynamic memory pool implementation, for reusable memory blocks, using `pthread mutex` locks
5
6
+#### Installation with [clib](https://github.com/clibs/clib)
7
+
8
+```
9
+$ clib install isty001/mem-pool
10
11
12
#### Usage:
13
14
Initialize a new MemPool, with the given `block_size` and `increase_count`.
-If it runs out of space, it'll create a new internal Buffer with `increase_count * block_size size`.
15
+If it runs out of space, it'll create a new internal Buffer with `increase_count * block_size` size.
16
17
```c
18
#include "mem_pool.h"
0 commit comments