Added basic IPC syscalls

This commit is contained in:
2022-08-17 02:47:41 -05:00
parent bfb56fcbb3
commit 0ae4f7995d
5 changed files with 217 additions and 68 deletions

View File

@@ -14,7 +14,7 @@
* @param block_size Size in bytes of a single unit of allocation
* @return a status code
*/
int kminit(void *base, size_t heap_size, size_t block_size);
int kminit(void *base, void* start, size_t heap_size, size_t block_size);
/**
* @brief Allocates a block of memory containing at least `size` bytes.