Tagged Questions
8
votes
3answers
2k views
Custom (pool) allocator with boost shared_ptr
I want objects managed by a shared_ptr to be allocated from a pool, say Boost's Pool interface, how can this be achieved?
7
votes
2answers
425 views
C++ allocators, specifically passing constructor arguments to objects allocated with boost::interprocess::cached_adaptive_pool
This is an embarrassing question, but even the well-written documentation provided with boost.interprocess hasn't been enough for me to figure out how to do this.
What I have is a ...
3
votes
2answers
163 views
Class design for self-linked classes with generic pointer type
I am currently modifying a complex class that has nodes pointing to themselves just like linked lists or graphs. I want it to be used in shared memory using boost::interprocess functions. Now I am ...
2
votes
1answer
160 views
boost::unordered_map using boost::interprocess::cached_node_allocator compilation failure
I am trying to create a boost::unordered_map in a boost::interprocess::managed_shared_memory segment. This works fine until I try to change from using boost::interprocess::allocator to ...
0
votes
1answer
79 views
Is there a bitset class that's sized at instantiation time, but avoids boost::dynamic_bitset<>'s extra allocation call?
Is there a convenient analog of std::bitset<> that's dynamically sizable at instantiation time, but avoids the extra allocation required by boost::dynamic_bitset<>
You can create ...
0
votes
2answers
915 views
Dynamically change allocation strategy in boost::vector and boost::matrix
In my new project i am building a data management module.I want to give a simple template storage type to upper layers like
template<typename T>
class Data
{
public:
T getValue();
private:
...
-1
votes
0answers
50 views
Fast allocator for std::set and map [closed]
I've been looking for fast allocator for set and map (both STL and Boost versions), because dealing with large sets of data (10000+ elements in set/map) makes allocating and deallocating memory by ...