Documentation

This commit is contained in:
2022-01-17 14:38:17 +01:00
parent 775df3c76e
commit b9fa2e1d81
2 changed files with 28 additions and 3 deletions

View File

@@ -10,10 +10,8 @@ long k_brk(long brk, long, long, long, long, long) {
vmm_set_page(kernel_P4, _brk, pmm_alloc(), PAGE_GLOBAL | PAGE_WRITE | PAGE_PRESENT);
_brk += PAGE_SIZE;
}
return _brk;
} else {
return _brk;
}
return _brk;
}
long k_mmap(long addr, long length, long prot, long flags, long fd, long offset) {