
26 Apr
2012
26 Apr
'12
2:29 a.m.
On Thu, Apr 26, 2012 at 06:38, Christopher Kormanyos <e_float@yahoo.com>wrote:
I also need entirely static pools that allocate memory at *compile* time via template parameter. I use this kind of pool as the basis for memory allocation in embedded microcontroller projects.
So I would actually need one-shot allocation (as you describe) as well as compile-time allocation.
I have always written my own pools for this. I might be nice to get one *off the rack* from boost.
Same here, I use both runtime defined size pools and compile-time defined size pools. About singleton_pool, my understanding is that it provide a totally orthogonal feature to this static_pool...right? Joel Lamotte