MyOS Kernel
|
#include <stddef.h>
Go to the source code of this file.
Functions | |
void * | kmalloc (size_t size) |
void | kfree (void *mem) |
void kfree | ( | void * | mem | ) |
Free a block in the kernel heap
mem | The address of the block |
void* kmalloc | ( | size_t | size | ) |
Allocate a block in the kernel heap
size | The size of the block |