aboutsummaryrefslogtreecommitdiff
path: root/mem/src
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2023-07-16 16:31:59 -0700
committer3gg <3gg@shellblade.net>2023-07-16 16:31:59 -0700
commitecc2645ba4c44005ef13e33c79059de69b76551f (patch)
tree0a440aa55cf81d61688bbd34dfe8f07c39e55171 /mem/src
parentf48986597e6ff092feb0f18a79c6fa51a3f0e3bb (diff)
Add function to query pool capacity.
Diffstat (limited to 'mem/src')
-rw-r--r--mem/src/mem.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/mem/src/mem.c b/mem/src/mem.c
index ff97f0f..056d947 100644
--- a/mem/src/mem.c
+++ b/mem/src/mem.c
@@ -181,3 +181,8 @@ size_t mem_get_chunk_handle_(const Memory* mem, const void* chunk) {
181 assert(block_byte_index % mem->block_size_bytes == 0); 181 assert(block_byte_index % mem->block_size_bytes == 0);
182 return block_byte_index / mem->block_size_bytes; 182 return block_byte_index / mem->block_size_bytes;
183} 183}
184
185size_t mem_capacity_(const Memory* mem) {
186 assert(mem);
187 return mem->num_blocks * mem->block_size_bytes;
188}