0
votes
2answers
51 views

Must a call to malloc be matched by a call to free in a dynamic memory pool?

I have some code here that implements a dynamic memory pool. The pool starts off at size 0 and grows with each successive allocation. It is used to try and minimise the overhead of tons of allocations ...
4
votes
1answer
73 views

Should I use Pools for particles if i forced to re-init every particle every time i create them

I am creating a particle system in XNA4 and I've bumped into problem. My first particle system was a simple list of particles, whose instances are created when needed. But then I read about using ...
3
votes
3answers
354 views

Memory Pool in C++ [closed]

I have very high performance C++ library. I am thinking of writing a memory pool so that I do not have to use global new and delete. I did some reading. But wanted to know will this help me in ...
0
votes
2answers
163 views

Pooling memory in C - Memory Management

I am writing a cross platform shared library in C. The workflow of this library would be like, lib *handle = lib_init(); result = lib_do_work(handle); lib_destroy(handle); Usually, users will init ...
1
vote
1answer
237 views

Custom memory allocator for OpenCV

Is it possible to set a custom allocator for OpenCV 2.3.1? I have a memory pool created and I want OpenCV to use that pool for what it needs. Is that possible? If it is, how can it be done? Updated: ...
0
votes
1answer
152 views

Pre-allocate memory and use in forked processes.

I would like to pre-allocate sufficiently large amount of memory in a program before forking processes and then further allocate/use memory from this pool in the forked processes. I have come across ...
1
vote
2answers
207 views

Pool Garbage Collection Strategy

I'n my application I'm using pools to speed up allocation of certain types of resources: e.g. tbb::concurrent_unordered_map<size_t, tbb::concurrent_bounded_queue<resource>> pools; ...
1
vote
4answers
1k views

Memory pools implementation in C

I am looking for a good memory pool implementation in C. it should include the following: Anti fragmentation. Be super fast :) Ability to "bundle" several allocations from different sizes under ...
1
vote
1answer
306 views

How to create pool allocator for abstract base class in C++?

Have run into a bug with glibc's malloc(): http://sourceware.org/bugzilla/show_bug.cgi?id=4349 and am thinking a work around for now until updating to later version of glibc is to do pooled allocation ...
0
votes
1answer
453 views

How to use boost::object_pool<>::construct with a non const reference as a ctor parameter?

Is it somehow possible to use boost::object_pool<>::construct with non const references? The following snippet doesn't compile (VS2010): foo::foo(bar & b) { } static ...
5
votes
4answers
2k views

The best alternative for String flyweight implementation in Java

My application is multithreaded with intensive String processing. We are experiencing excessive memory consumption and profiling has demonstrated that this is due to String data. I think that memory ...