lefticus / cpp_weekly

The official C++ Weekly Repository. Code samples and notes of future / past episodes will land here at various times. PR's will be accepted in some cases.
The Unlicense
698 stars 26 forks source link

Custom allocators for embedded usage of std library #386

Open PBrunot opened 4 months ago

PBrunot commented 4 months ago

C++ weekly

Is this a "C++Weekly"

Topics

How to use (arena?) allocator in embedded world to reduce fragmentation. E.g. in order to use std::vector, JSON libraries in a dedicated memory area without fragmenting the rest of the program.

Length

Probably more long to cover embedded allocators, how to pass them to std library objects.