diff options
author | Danny Holman <dholman@gymli.org> | 2024-05-27 13:53:52 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-05-27 13:53:52 -0500 |
commit | aaf7355c5ededfcdc877c7f2989fb1ba02dfb848 (patch) | |
tree | 0c4588650fe1fc1fa1af2972353a2bc920cf1e68 /include/libk/kmalloc.h | |
parent | 41cff28f5447b5f669db62ce2a73be98bc5bce37 (diff) |
libk: create a subset libc for kernel use
Create a subset of the C library for use inside the kernel.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include/libk/kmalloc.h')
-rw-r--r-- | include/libk/kmalloc.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/libk/kmalloc.h b/include/libk/kmalloc.h new file mode 100644 index 0000000..6573d28 --- /dev/null +++ b/include/libk/kmalloc.h @@ -0,0 +1,19 @@ +#ifndef LIBK_KMALLOC_H +#define LIBK_KMALLOC_H + +#include <stdint.h> +#include <stddef.h> + +struct mem_block { + void *start; + size_t size; + int alloc; + struct mem_block *next; + struct mem_block *prev; +}; + +void kmalloc_init(void); +void* kmalloc(size_t sz); +void kfree(void *ptr); + +#endif |