Definition in file mt_allocator.h.#include <new>
#include <cstdlib>
#include <bits/functexcept.h>
#include <bits/gthr.h>
#include <bits/atomicity.h>
Include dependency graph for mt_allocator.h:
Go to the source code of this file.
|
This is a fixed size (power of 2) allocator which - when compiled with thread support - will maintain one freelist per size per thread plus a "global" one. Steps are taken to limit the per thread freelist sizes (by returning excess back to "global"). Further details: http://gcc.gnu.org/onlinedocs/libstdc++/ext/mt_allocator.html Definition at line 56 of file mt_allocator.h. |