mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Only swap if there was an arena
This commit is contained in:
@@ -48,9 +48,11 @@ temp_allocator_fini :: proc() {
|
|||||||
global_default_temp_allocator_arenas = {}
|
global_default_temp_allocator_arenas = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEMP_ALLOCATOR_GUARD_END :: proc(temp: runtime.Arena_Temp loc := #caller_location) {
|
TEMP_ALLOCATOR_GUARD_END :: proc(temp: runtime.Arena_Temp, loc := #caller_location) {
|
||||||
runtime.arena_temp_end(temp, loc)
|
runtime.arena_temp_end(temp, loc)
|
||||||
global_default_temp_allocator_index = (global_default_temp_allocator_index-1)%MAX_TEMP_ARENA_COUNT
|
if temp.arena != nil {
|
||||||
|
global_default_temp_allocator_index = (global_default_temp_allocator_index-1)%MAX_TEMP_ARENA_COUNT
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@(deferred_out=TEMP_ALLOCATOR_GUARD_END)
|
@(deferred_out=TEMP_ALLOCATOR_GUARD_END)
|
||||||
|
|||||||
Reference in New Issue
Block a user