aboutsummaryrefslogtreecommitdiff
path: root/include/apos/utils.h
AgeCommit message (Collapse)Author
2022-05-29modify formatting rulesKimplul
2022-05-28start implementing new proc/rpc handlingKimplul
+ Essentially, separate root process and remote procedure call handling. I really should write down some documentation so I don't forget, but essentially: All threads share a common process virtual memory, and when a thread wants to make an rpc, it switches over to its own rpc vmem space that is linked to the remote process.
2022-05-23switch from clang-format to uncrustifyKimplul
The output is close enough, and I like that uncrustify is a third-party tool, so people can install a single tool for formatting instead of having to lug around a whole toolchain. I fully expect to have to add settings to uncrustify.conf, but let's see how this goes.
2022-05-23make syntax friendlier for uncrustifyKimplul
2022-05-22apply slight doxygen formatting improvementsKimplul
2022-05-22add @file info to all filesKimplul
+ Next step, start documenting contents of each file.
2022-04-29continue building base for irq handlingKimplul
2022-04-24fix rv32 compile errorsKimplul
2022-04-23ran clang-formatKimplul
2022-04-23change alignment functions to be type genericKimplul
2022-04-21fix warnings on 32bit riscvKimplul
+ Will most probably not work on 32bit, but nice to make 'portable' code.
2022-04-16initial thread id handlingKimplul
+ At least initial in the sense that this seems like the smartest way to handle things, that is.
2022-04-10add clang format and run itKimplul
2021-12-27Started work on syscallsKimplul
2021-12-26First useful jump to userspace!Kimplul
2021-12-23Added alloc_fixed_regionKimplul
+ Not used at the moment anywhere, but should come in handy when emulating stuff like (s)brk and when mapping ELF stuff
2021-12-23map_fill_region can now utilize higher order pagesKimplul
2021-12-21Started allowing higher order allocsKimplul
2021-12-20Right up to init_proc, FUCK YEAHKimplul
+ Lots to do still, should keep a more detailed TODO.txt, among other things implement Sv48 support, make more things single truths etc.
2021-12-19Add cpio newc format readerKimplul
+ Still need to actually add in an initrd that uses the format :D
2021-12-19[WIP] virtual memory managementKimplul
2021-10-11Start designing vmem frameworkKimplul
2021-09-20Some slight robustness improvements and obo errorsKimplul
2021-09-19Added fdt debug capabilityKimplul
+ For future reference, apos now requires initrd to be found in fdt.