Age | Commit message (Expand) | Author |
2022-07-16 | amd64: just enough paging support to map init | dzwdz |
2022-07-16 | amd64: barely boot into kernel code | dzwdz |
2022-07-15 | i686: stop using pushal/popal in sysenter/sysexit | dzwdz |
2022-07-15 | i386/isr: don't use pushal; push registers manually | dzwdz |
2022-07-14 | user/shell/cat: support reading from stdin until eof | dzwdz |
2022-07-14 | user: basic terminal driver with line editing | dzwdz |
2022-07-14 | kernel/driver/serial: allow writes even with pending reads | dzwdz |
2022-07-12 | user/tmpfs: basic read/write | dzwdz |
2022-07-12 | remove the incorrect OPEN_CREATE guards in fs drivers | dzwdz |
2022-07-12 | user/shell: stdout redirection | dzwdz |
2022-07-12 | user/shell: parse redirection syntax | dzwdz |
2022-07-11 | user: add shorthand close() and fork() wrappers for those syscalls | dzwdz |
2022-07-11 | user: reorganize the userland sources | dzwdz |
2022-07-11 | init: file_reopen, keep stdin/stdout on their standard fds | dzwdz |
2022-07-11 | init/stdlib: a more posix-y file api | dzwdz |
2022-07-10 | init/tests: semaphore pipe-based test | dzwdz |
2022-07-10 | syscalls: implement dup | dzwdz |
2022-07-10 | init/lib: implement "evil semaphores" | dzwdz |
2022-07-10 | kernel: implement killing processes stuck on pipes | dzwdz |
2022-07-09 | kernel/pipes: process queueing | dzwdz |
2022-07-09 | init/test: mostly clean up the existing tests | dzwdz |
2022-07-09 | syscalls/pipe: turn into a POSIX-style api with separate rw ends | dzwdz |
2022-07-08 | kernel/proc: remove the type argument from process_handle_get | dzwdz |
2022-07-08 | kernel/syscalls: fix the SYSCALL_RETURN macro for returning pointers | dzwdz |
2022-07-08 | kernel/fsroot: use req_preprocess to calculate offsets everywhere | dzwdz |
2022-07-08 | init/fs: remove fs_respond_delegate, clean up | dzwdz |
2022-07-08 | syscall/fs_respond: get the file id from the buf argument | dzwdz |
2022-07-07 | kernel: add the vfsreq_finish_short shorthand function | dzwdz |
2022-07-07 | kernel/vfs: delegate support in _syscall_fs_respond! | dzwdz |
2022-07-07 | shared: add a flags argument to _syscall_fs_respond | dzwdz |
2022-07-06 | kernel: don't panic on nonexistent syscalls | dzwdz |
2022-07-06 | kernel/pipes: read & write support | dzwdz |
2022-07-05 | kernel: initial partial pipe support | dzwdz |
2022-07-05 | shared: fix memset | dzwdz |
2022-07-05 | init/ps2: support inserting special characters with ctrl, tty style | dzwdz |
2022-07-01 | kernel/fsroot: respect offset when reading root | dzwdz |
2022-07-01 | init/fs: move the kernel stuff to /kdev/ | dzwdz |
2022-07-01 | kernel: disable klog | dzwdz |
2022-07-01 | init/fs: remember to close fs handles in fork2_n_mount | dzwdz |
2022-07-01 | kernel: add the debug_klog syscall for tracking down process ids | dzwdz |
2022-07-01 | init/stdlib: implement snprintf | dzwdz |
2022-06-30 | kernel: get lint to shut up about undeclared variables | dzwdz |
2022-06-30 | syscall_wrappers: generate casts so the compiler doesn't complain | dzwdz |
2022-06-30 | shared/mem: explicitly discard the const qualifier in memchr | dzwdz |
2022-06-30 | kernel/linker: rename .text.early to .shared | dzwdz |
2022-06-29 | init/fs: tmpfs driver with support for creating new files | dzwdz |
2022-06-29 | kernel/vfs: add the OPEN_CREATE flag | dzwdz |
2022-05-29 | init/ps2: fix double key capture | dzwdz |
2022-05-29 | kernel: fix overlapping interrupt / regular stacks | dzwdz |
2022-05-29 | init/malloc: use FINDFREE | dzwdz |