globalAllocator.h 240 B

12345678910111213141516
  1. #pragma once
  2. #include <pikaAllocator/freeListAllocator.h>
  3. namespace pika
  4. {
  5. namespace memory
  6. {
  7. void setGlobalAllocatorToStandard();
  8. void setGlobalAllocator(pika::memory::FreeListAllocator *allocator);
  9. void dissableAllocators();
  10. }
  11. }