Nucleus
Barry Improved page fault handling and mmap system call 665af0a (3 years, 2 months ago)diff --git a/include/nucleus/memory.h b/include/nucleus/memory.h index 5395278..059ba9f 100644 --- a/include/nucleus/memory.h +++ b/include/nucleus/memory.h @@ -71,4 +71,6 @@ void *map_page(Page *page); int verify_access(const void *addr, size_t len, int prot); +VMRegion *vm_create_stack(void); + #endif