default_allocators_general.odin 539 B

123456789101112131415
  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 when ODIN_OS != .Orca && (ODIN_ARCH == .wasm32 || ODIN_ARCH == .wasm64p32) {
  9. default_allocator :: default_wasm_allocator
  10. default_allocator_proc :: wasm_allocator_proc
  11. } else {
  12. default_allocator :: heap_allocator
  13. default_allocator_proc :: heap_allocator_proc
  14. }