rename arena-abandoned to arena-abandon

This commit is contained in:
Daan 2024-06-03 21:30:02 -07:00
parent e0baf882bb
commit 08fa864605
2 changed files with 1 additions and 3 deletions

View File

@ -13,8 +13,6 @@ terms of the MIT license. A copy of the license can be found in the file
#include "bitmap.h"
#endif
typedef struct mi_arena_s mi_arena_t;
// Minimal exports for arena-abandoned.
size_t mi_arena_id_index(mi_arena_id_t id);
mi_arena_t* mi_arena_from_index(size_t idx);

View File

@ -62,7 +62,7 @@ static mi_decl_cache_align _Atomic(mi_arena_t*) mi_arenas[MI_MAX_ARENAS];
static mi_decl_cache_align _Atomic(size_t) mi_arena_count; // = 0
#define MI_IN_ARENA_C
#include "arena-abandoned.c"
#include "arena-abandon.c"
#undef MI_IN_ARENA_C
/* -----------------------------------------------------------