All Talks

Embedded: Customizing Dynamic Memory Management in C++

https://cppcon.org/ https://github.com/CppCon/CppCon2020

Dynamic memory allocation is a natural solution for many common programming problems. In C++, new-expressions allocate dynamic memory through a function called operator new. Unfortunately, the compiler-provided implementation of operator new is often expensive to run, non-deterministic, and risks fragmenting memory over time. As a result, too many resource-constrained systems (e.g., embedded, real-time, or high-performance applications) …

You might be interested in: