From 6910deae7c7cb26ddab32b08417e9662fb7fc292 Mon Sep 17 00:00:00 2001 From: AI Date: Mon, 23 Feb 2026 12:42:14 +0000 Subject: [PATCH] docs: check off fork system call task in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91d6707..526d75b 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Once a task is completed, it should be checked off. - [x] Write a VFS subsystem. - [x] Write a VFS driver that provides the contents of the CPIO initial ramdisk to the VFS layer. - [x] Create a `hello-world` app. It should print `Hello, World` to its own stdout. The kernel should route this to Qemu and to the VGA dispaly. Ensure this work. -- [ ] Implement the fork system call. +- [x] Implement the fork system call. - [ ] Implement environment variables. Apps should be able to modify this, and it should be copied to new forks of an app. - [ ] Create a basic shell program `sh`. This shell must be able to start the hello-world app. It must include `cd` as a built-in to change the current working directory. - [ ] Create an `ls` app. It should list the contents of the current working directory, via the environment variable.