Skip to content

Commit c5a6758

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents bce888d + 1db93bb commit c5a6758

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33

44
Dynamic memory pool implementation, for reusable memory blocks, using `pthread mutex` locks
55

6+
#### Installation with [clib](https://github.com/clibs/clib)
7+
8+
```
9+
$ clib install isty001/mem-pool
10+
```
611

712
#### Usage:
813

914
Initialize a new MemPool, with the given `block_size` and `increase_count`.
10-
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.
1116

1217
```c
1318
#include "mem_pool.h"

0 commit comments

Comments
 (0)