jcf94 / MemoryPool

A C++ Memory Pool

Home Page:http://jcf94.com/2017/04/19/2017-04-19-memorypool/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A C++ MemoryPool

Useage

MemoryPool mem = MemoryPool(size);

int* a = (int*) mem.mbmalloc(sizeof(int));

*a = 12345;

mem.mbfree(a);

About

A C++ Memory Pool

http://jcf94.com/2017/04/19/2017-04-19-memorypool/


Languages

Language:C++ 93.0%Language:Makefile 7.0%