Tagged Questions

4
votes
1answer
110 views

Is there a C++ allocator that prevent an STL container from being swapped?

Has anyone seen an allocator that calls mlock(2) to prevent an STL container's contents from being swapped to disk? There is afaik only one tricky part to writing such an allocator, namely ...
1
vote
2answers
679 views

TCMalloc Allocator for STL

I want to use TCMalloc with STL containers, so I need an allocator built with TCMalloc (like tbb_allocator with TBB malloc). I cannot find any anything TCMalloc documentation (if it is called a ...
0
votes
1answer
26 views

How to create inherit from std::allocator and is it resonable?

What I wonder about is simple - if we create a DLL, compile it with static runtime, while in its code we will create a simple allocator that inherits from std::allocator, would it be possible for us ...
0
votes
3answers
592 views

Account memory usage with custom allocator

I'm using a custom allocator to account for memory usage in several containers. Currently I use a static variable to account for the memory usage. How could I separate this account across several ...