17 lines
368 B
C
17 lines
368 B
C
// Kernel heap management header
|
|
// Author: xamidev
|
|
// Licensed under the Unlicense. See the repo below.
|
|
// https//github.com/xamidev/blankos
|
|
|
|
#ifndef KHEAP_H
|
|
#define KHEAP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t kmalloc_a(uint32_t sz);
|
|
uint32_t kmalloc_p(uint32_t sz, uint32_t *phys);
|
|
uint32_t kmalloc_ap(uint32_t sz, uint32_t *phys);
|
|
uint32_t kmalloc(uint32_t sz);
|
|
|
|
#endif
|