heap_free_page -> heap_free

This commit is contained in:
2024-04-28 14:54:01 +05:30
parent 3085dfeded
commit b775afee2c
3 changed files with 15 additions and 15 deletions

View File

@@ -37,8 +37,8 @@ typedef struct
} heap_t;
void heap_create(heap_t *);
bool heap_free_page(heap_t *, page_t *);
page_t *heap_allocate(heap_t *, size_t);
bool heap_free(heap_t *, page_t *);
void heap_stop(heap_t *);
#endif