summaryrefslogtreecommitdiff
path: root/Kernel/FIFO.h
AgeCommit message (Collapse)Author
2018-12-03Refactor the FIFO implementation to use a DoubleBuffer as backing store.Andreas Kling
This is considerably more efficient than using a CircularQueue.
2018-12-02Make it possible to build the Kernel on a macOS host.Andreas Kling
It still requires an ELF compiler and linker, but at least it builds. I need to get rid of the "Unix" namespace. This does a lot of that.
2018-11-12Add primitive FIFO and hook it up to sys$pipe().Andreas Kling
It's now possible to do this in bash: cat kernel.map | fgrep List This is very cool! :^)