objectpool icon indicating copy to clipboard operation
objectpool copied to clipboard

Object pool implementation in C++11

Results 2 objectpool issues
Sort by recently updated
recently updated
newest added

you use realloc to add block ,but realloc may return a pointer different from the previous, if this happen, all the allocated object pointer will be invalid. this is a...

Hi @bitshifter , I'm wondering if the objectpool can be used in a multi-threaded case. That means mulitple threads share one object pool to get and return objects. Is it...