summaryrefslogtreecommitdiff
path: root/firmware/include/core_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/core_alloc.h')
-rw-r--r--firmware/include/core_alloc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/include/core_alloc.h b/firmware/include/core_alloc.h
index f535fc1f6e..87246bcbd6 100644
--- a/firmware/include/core_alloc.h
+++ b/firmware/include/core_alloc.h
@@ -14,6 +14,9 @@ int core_alloc(const char* name, size_t size);
14int core_alloc_ex(const char* name, size_t size, struct buflib_callbacks *ops); 14int core_alloc_ex(const char* name, size_t size, struct buflib_callbacks *ops);
15int core_alloc_maximum(const char* name, size_t *size, struct buflib_callbacks *ops); 15int core_alloc_maximum(const char* name, size_t *size, struct buflib_callbacks *ops);
16bool core_shrink(int handle, void* new_start, size_t new_size); 16bool core_shrink(int handle, void* new_start, size_t new_size);
17void core_pin(int handle);
18void core_unpin(int handle);
19unsigned core_pin_count(int handle);
17int core_free(int handle); 20int core_free(int handle);
18size_t core_available(void); 21size_t core_available(void);
19size_t core_allocatable(void); 22size_t core_allocatable(void);