summaryrefslogtreecommitdiff
path: root/src/std/mem.h
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-06-07 12:10:32 +1000
committerOmniscient <omniscient.oce@gmail.com>2024-06-07 12:10:32 +1000
commitf553d66891e6f77b0fa78c279f51a44d1c51ff9f (patch)
tree4e0019b694e86ebde52bf88a883b0d3666fbcdc5 /src/std/mem.h
parent34cfaac69eda7eae258d004e4cafd5a816cf9b67 (diff)
add assert back that pool entry is at least as big as a pointer. add debug name for pools
Diffstat (limited to 'src/std/mem.h')
-rw-r--r--src/std/mem.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/std/mem.h b/src/std/mem.h
index 1d508ce..b256e27 100644
--- a/src/std/mem.h
+++ b/src/std/mem.h
@@ -48,9 +48,10 @@ typedef struct void_pool {
u64 count;
void* backing_buffer;
void_pool_header* free_list_head;
+ const char* debug_label;
} void_pool;
-void_pool void_pool_create(arena* a, u64 capacity, u64 entry_size);
+void_pool void_pool_create(arena* a, const char* debug_label, u64 capacity, u64 entry_size);
void void_pool_free_all(void_pool* pool);
bool void_pool_is_empty(void_pool* pool);
bool void_pool_is_full(void_pool* pool);
@@ -68,7 +69,7 @@ void void_pool_dealloc(void_pool* pool, u32 raw_handle);
} Name##_pool; \
\
static Name##_pool Name##_pool_create(arena* a, u64 cap, u64 entry_size) { \
- void_pool p = void_pool_create(a, cap, entry_size); \
+ void_pool p = void_pool_create(a, "\""#Name"\"", cap, entry_size); \
return (Name##_pool){ .inner = p }; \
} \
static inline T* Name##_pool_get(Name##_pool* pool, Name##_handle handle) { \