acadia/zion
Drew Galbraith e1dc790155 [Zion] Clear interrupts on panic to actually hault the machine. 2023-11-16 22:10:54 -08:00
..
boot [Zion] Print less about acpi on boot. 2023-11-15 16:09:36 -08:00
capability [Zion] Move to StrFormat for debug line. 2023-11-05 09:24:09 -08:00
common [Zion] Access the KernelStackManager through the VMM. 2023-11-15 15:38:25 -08:00
debug [Zion] Clear interrupts on panic to actually hault the machine. 2023-11-16 22:10:54 -08:00
include [Zion] Pass the framebuffer info to yellowstone init process. 2023-11-09 11:20:41 -08:00
interrupt [Denali] Reduce noise on AHCI interrupt. 2023-11-15 16:21:19 -08:00
lib [Zion] Pass data to message queue as IpcMessage obj. 2023-11-03 00:37:53 -07:00
loader [Zion] Pass the framebuffer info to yellowstone init process. 2023-11-09 11:20:41 -08:00
memory [Zion] Use range based for loop on LinkedList as POC. 2023-11-15 18:50:58 -08:00
object [Zion] Access the KernelStackManager through the VMM. 2023-11-15 15:38:25 -08:00
scheduler [Zion] Remove sleeping messages. 2023-11-15 16:27:09 -08:00
syscall [Glacier][Zion] Add a fix sized string builder to allow non-alloc debug. 2023-11-09 09:07:32 -08:00
usr [Zion] Remove dead ZMessage struct. 2023-11-02 21:57:29 -07:00
CMakeLists.txt [Zion] Introduce the Kernel VMM to centralize allocs. 2023-11-15 15:15:31 -08:00
README.md Update READMEs and TODOs 2023-10-24 22:56:45 -07:00
TODO.md [Yellowstone] Move registration service to the main yellowstone service 2023-10-24 23:42:49 -07:00
linker.ld Barebones Kernel Commit 2023-05-17 20:20:53 -07:00
zion.cpp [Zion] Remove sleeping messages. 2023-11-15 16:27:09 -08:00

README.md

Zion Microkernel

The Zion Microkernel is a capability based kernel. The types of objects that processes can hold a capability to exist in the object/ directory. The system calls used to interact with them are enumerated in include/zcall.h and are implemented in the syscalls/ directory.

The system uses a barebones ELF loader (loader/init_loader.h) to jump to userspace but from there userspace processes are responsible for loading child processes into memory and executing them.

Open Work

The TODO file enumerates current areas for improvement.