diff options
| author | Ada Christine <adachristine18@gmail.com> | 2022-01-03 00:55:11 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2022-01-03 00:55:11 +0000 |
| commit | 65e60c251bac80ab1a95f3e983b387a52ced102b (patch) | |
| tree | 07a59837f6ab769e6bed21822e3bacd92aba1a4e /kc/core/memory.h | |
| parent | 3e522c4976e23acac32e9adee20a6af458e0da5e (diff) | |
more memory management work
Diffstat (limited to 'kc/core/memory.h')
| -rw-r--r-- | kc/core/memory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kc/core/memory.h b/kc/core/memory.h index a4488cf..3f7f323 100644 --- a/kc/core/memory.h +++ b/kc/core/memory.h @@ -37,6 +37,9 @@ void page_free(phys_addr_t paddr); void *heap_alloc(size_t size); void heap_free(void *block); +void *vm_alloc(size_t size); +void vm_free(void *block); + void *memory_alloc(size_t size); void memory_free(void *block); |
