aboutsummaryrefslogtreecommitdiff
path: root/core/runtime/default_allocators_general.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/runtime/default_allocators_general.odin')
-rw-r--r--core/runtime/default_allocators_general.odin30
1 files changed, 30 insertions, 0 deletions
diff --git a/core/runtime/default_allocators_general.odin b/core/runtime/default_allocators_general.odin
new file mode 100644
index 000000000..8f598b7a1
--- /dev/null
+++ b/core/runtime/default_allocators_general.odin
@@ -0,0 +1,30 @@
+//+build !windows
+//+build !freestanding
+//+build !js
+package runtime
+
+when ODIN_DEFAULT_TO_NIL_ALLOCATOR {
+ // mem.nil_allocator reimplementation
+
+ default_allocator_proc :: proc(allocator_data: rawptr, mode: Allocator_Mode,
+ size, alignment: int,
+ old_memory: rawptr, old_size: int, loc := #caller_location) -> ([]byte, Allocator_Error) {
+ return nil, .None;
+ }
+
+ default_allocator :: proc() -> Allocator {
+ return Allocator{
+ procedure = default_allocator_proc,
+ data = nil,
+ };
+ }
+} else {
+ // TODO(bill): reimplement these procedures in the os_specific stuff
+ import "core:os"
+
+ default_allocator_proc :: os.heap_allocator_proc;
+
+ default_allocator :: proc() -> Allocator {
+ return os.heap_allocator();
+ }
+}