default_allocators_general.odin 363 B

123456789101112
  1. package runtime
  2. when ODIN_DEFAULT_TO_NIL_ALLOCATOR {
  3. default_allocator_proc :: nil_allocator_proc
  4. default_allocator :: nil_allocator
  5. } else when ODIN_DEFAULT_TO_PANIC_ALLOCATOR {
  6. default_allocator_proc :: panic_allocator_proc
  7. default_allocator :: panic_allocator
  8. } else {
  9. default_allocator :: heap_allocator
  10. default_allocator_proc :: heap_allocator_proc
  11. }