wip: fork and wait are almost working (missing child's stack)

This commit is contained in:
2025-01-28 15:44:09 +01:00
parent e60969b37a
commit 1ca8c68cf5
5 changed files with 23 additions and 12 deletions

View File

@ -43,10 +43,10 @@ static void owo(void)
static void awa(void)
{
/* if (fork() < 0) */
/* kprintf("camille il a une grosse bite (18cm)\n"); */
if (fork() < 0)
kprintf("camille il a une grosse bite (18cm)\n");
kprintf("awaille\n");
/* wait(); */
wait();
}
void kernel_main(multiboot_info_t *mbd, u32 magic)