Initial commit
This commit is contained in:
9
kernel/kalloc.h
Normal file
9
kernel/kalloc.h
Normal file
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#define PAGE_SIZE 4096
|
||||
|
||||
void kalloc_init();
|
||||
void* kalloc();
|
||||
void* kzalloc();
|
||||
void kfree(void*);
|
||||
|
Reference in New Issue
Block a user