| 1234567891011121314151617181920 |
- #pragma once
- #include <pikaAllocator/freeListAllocator.h>
- namespace pika
- {
- namespace memory
- {
- void setGlobalAllocatorToStandard();
-
- void setGlobalAllocator(pika::memory::FreeListAllocator *allocator);
- void dissableAllocators();
- void pushCustomAllocatorsToStandard();
- void popCustomAllocatorsToStandard();
- }
- }
|