Hobby Operating System
Go to file
Drew Galbraith 1cebe547c0 [zion] Allow the sleep thread to be preempted.
We can't yield it when the next thread is unblocked for now because it
may still be holding a lock that the prempted thread is waiting on.
2023-06-19 21:47:37 -07:00
lib Add struct reading from channels 2023-06-19 21:47:23 -07:00
scripts Build GCC/Binutils toolchain in tree. (#1) 2023-06-15 18:39:14 -04:00
sys Get rid of the type field on zmessage 2023-06-17 02:01:21 -07:00
toolchain Build GCC/Binutils toolchain in tree. (#1) 2023-06-15 18:39:14 -04:00
zion [zion] Allow the sleep thread to be preempted. 2023-06-19 21:47:37 -07:00
.ccls Specify our target in .ccls 2023-06-16 23:15:41 -07:00
.clang-format Add a clang format spec 2023-05-17 20:30:15 -07:00
.gdbinit Add a kernel ELF module and load it in a new process. 2023-05-29 00:32:54 -07:00
.gitignore Add compile_commands.json to .gitignore 2023-05-17 20:42:21 -07:00
CMakeLists.txt [zion] [yellowstone] Pass the denali VMMO by port as a POC. 2023-06-16 15:58:50 -07:00
LICENSE Add LICENSE and README 2023-05-31 00:03:44 -07:00
README.md Add LICENSE and README 2023-05-31 00:03:44 -07:00
init-dbg.sh Build GCC/Binutils toolchain in tree. (#1) 2023-06-15 18:39:14 -04:00

README.md

AcadiaOS

AcadiaOS is a hobby operating system Iuse to explore and learn about OS development.

It is built on top of a small microkernel (currently ~3k LOC) that is capability based and provides memory management, process scheduling, and hardware access.