feat: introduced tasking, added paging (no vm), moved malloc, added
syscalls, other stuff
This commit is contained in:
17
kernel/mem/malloc.h
Normal file
17
kernel/mem/malloc.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Created by rick on 23-02-21.
|
||||
//
|
||||
|
||||
#ifndef NEW_KERNEL_MALLOC_H
|
||||
#define NEW_KERNEL_MALLOC_H
|
||||
#include <types.h>
|
||||
|
||||
void malloc_init();
|
||||
|
||||
void print_malloc_info();
|
||||
|
||||
void *malloc(size_t size);
|
||||
|
||||
void free(void *mem);
|
||||
|
||||
#endif //NEW_KERNEL_MALLOC_H
|
||||
Reference in New Issue
Block a user