Add process scheduler, pipes, and separate terminal from shell

This commit is contained in:
2026-06-19 21:49:29 +03:00
parent 452125782e
commit 415f78fd40
17 changed files with 524 additions and 120 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ void *memory_allocate(uint64_t size) {
free_list->next = NUL;
}
size = sizeof(free_chunk_t) + (size + 7) & (uint64_t)~7;
size = sizeof(free_chunk_t) + ((size + 7) & (uint64_t)~7);
free_chunk_t *prev = NUL;
free_chunk_t *curr = free_list;