Updated Wish List (markdown)

Kevin Lange 2014-04-26 23:18:34 -07:00
parent 71f5649caf
commit a0b0842a62

@ -32,6 +32,12 @@ Currently, a lot of the kernel assumes a single CPU. Enable SMP support in the k
### Finish EXT2 filesystem
The current ext2 filesystem module is missing write support. Finish the filesystem module.
### Implement Unix Pipes
The kernel provides "pipes" that are not Unix pipes - they're more like VFS-compatible ring buffers. Implement Unix pipes and make the pipe syscalls use them instead. This may or may not depend on additions to the VFS, I am not sure.
### Make process stick around as zombies until collected by `wait`
Essentially, we do a silly reaping thing at the moment, and our `wait` sucks. Fix it by making processes stick around until their parent `wait`s for them, and then reap them.
# Userspace Projects
## Thread-local storage