aboutsummaryrefslogtreecommitdiff
path: root/include/arch/vmem.h
AgeCommit message (Collapse)Author
2022-11-12slight optimizationKimplul
2022-09-15change syscalls to take 5 params and return 6Kimplul
+ In total, a syscall is built up of 6 values, with the first being the syscall number. Symmetrically, the first value is now a status and the following five values return "values". This allows us to cram in more info into the ipc_* functions. The performance difference is absolutely minimal, at least from my testing in qemu.
2022-06-12add license textsKimplul
2022-06-11continue documentationKimplul
2022-05-24make process loading more genericKimplul
2022-05-23new include structure, make parse easier for doxyKimplul
2022-05-22add @file info to all filesKimplul
+ Next step, start documenting contents of each file.
2022-05-22rename vm_branch to vmemKimplul
+ Closer to what it's for rather than what it is.
2022-05-22improved tcb handling in preparation for processesKimplul
2022-05-21add status info to memory mappingsKimplul
+ next up would probably be to start working on process/thread relationships, largely as documented. Still not entirely sure about how I want to handle fork, but I suppose I might figure it out at some point.
2022-04-10add clang format and run itKimplul
2022-01-07Use #if defined(...) when not guard clauseKimplul
2022-01-07Steps towards better status/debugging controlKimplul
2022-01-07Improved header dependency treeKimplul