GitXplorerGitXplorer
d

CppMemoryPool

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
f847b01974c4ccf64bb58f1f02f426a3345cd66c

Bug fix. Update gitignore.

ddavidalbertonogueira committed 8 years ago
Unverified
02a458e496134cbfe096357663691a98a6f4b014

Code cleanup.

ddavidalbertonogueira committed 9 years ago
Unverified
cb0c0b1058b8415aeab9a81058995c830bf68ab6

Add namespace to chrono.

ddavidalbertonogueira committed 9 years ago
Unverified
97e110527be12e44252fffd5caeb9f560d9ea286

Change Readme. Remove specific MVS files. Change gitignore.

ddavidalbertonogueira committed 9 years ago
Unverified
3344c66bec1b2599e75c63832c5a0c7b7491ff27

Update ReadMe.txt

ddavidalbertonogueira committed 9 years ago
Unverified
bb0c7d9f117c3d62165653cff0ed446c9c7c6a44

Template class for memoy pool. Main file with example and timing analysis included.

ddavidalbertonogueira committed 9 years ago

README

The README file for this repository.

CppMemoryPool

Memory Pool: C++ Optimization to improve object allocation and deallocation.

2 implementations:

  • C-pure one with malloc/realloc and free calls

  • C++ one with ::operator new, ::operator delete and a std::vector