Age | Commit message (Expand) | Author |
2021-08-03 | kernel: implement memcmp | dzwdz |
2021-08-03 | a bad testing framework | dzwdz |
2021-08-03 | put the NUM2STR macro in util.h | dzwdz |
2021-07-31 | fix formatting in github's viewer thingy | dzwdz |
2021-07-31 | draft out a simple overview of the VFS | dzwdz |
2021-07-31 | try documenting the syscalls (and fail badly) | dzwdz |
2021-07-31 | change the syscall naming convention; same one in kernel and userland | dzwdz |
2021-07-31 | kmalloc() and kfree() stubs | dzwdz |
2021-07-26 | rename process_new() to process_seed() | dzwdz |
2021-07-26 | exit() now switches to the first running process | dzwdz |
2021-07-26 | fork() pt 1: cloning process memory | dzwdz |
2021-07-26 | mark sc_exit() as noreturn | dzwdz |
2021-07-25 | print a heart on boot | dzwdz |
2021-07-24 | fix some warnings | dzwdz |
2021-07-24 | make the Makefile show almost nothing except warnings/errors | dzwdz |
2021-07-24 | simplify the struct copy in sysexit() | dzwdz |
2021-07-24 | sysenter: save the registers into _sysexit_regs, makes the code cleaner (imo) | dzwdz |
2021-07-24 | merge the `register` and `register_pushad` structs | dzwdz |
2021-07-24 | sysexit() now overrides all registers | dzwdz |
2021-07-24 | remove sysenter_setup from arch/generic.h - it's not even used | dzwdz |
2021-07-24 | save all registers on syscalls | dzwdz |
2021-07-23 | add a barebones exit() syscall | dzwdz |
2021-07-23 | update the process' EIP/ESP when it syscalls | dzwdz |
2021-07-22 | don't map the VGA console buffer in user processes | dzwdz |
2021-07-22 | disable paging when handling interrupts | dzwdz |
2021-07-22 | implement the debuglog() syscall | dzwdz |
2021-07-21 | syscall parameter & return value passing | dzwdz |
2021-07-21 | barebones syscall | dzwdz |
2021-07-21 | fix init stack alignment | dzwdz |
2021-07-21 | fix sysenter()'s stack argument | dzwdz |
2021-07-21 | simplify the IDT generation | dzwdz |
2021-07-21 | create ISR stubs, which call a single main isr handler | dzwdz |
2021-07-20 | remove an already finished TODO | dzwdz |
2021-07-20 | per-process virtual memory | dzwdz |
2021-07-20 | rename pagedir_use() to pagedir_switch() | dzwdz |
2021-07-20 | only enable paging when jumping into ring 0 | dzwdz |
2021-07-20 | global PAGE_MASK define | dzwdz |
2021-07-19 | fix some style inconsistenties | dzwdz |
2021-07-19 | remove the unused r3_test function | dzwdz |
2021-07-19 | very basic paging | dzwdz |
2021-07-19 | add a page fault handler | dzwdz |
2021-07-18 | basic executable loading | dzwdz |
2021-07-18 | clean up the linker script, remove duplicate labels | dzwdz |
2021-07-18 | fix most current compiler warnings | dzwdz |
2021-07-18 | minor Makefile readibility tweaks | dzwdz |
2021-07-18 | move the kernel linker script to src/kernel/ | dzwdz |
2021-07-18 | move all kernel sources to src/kernel/ | dzwdz |
2021-07-18 | Make: use a from_sources function instead of a global OBJ macro | dzwdz |
2021-07-17 | add a shitty readme | dzwdz |
2021-07-17 | detect the highest used memory address, and only allocate pages above it | dzwdz |