index
:
camellia
main
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
init
/
syscalls.c
Age
Commit message (
Expand
)
Author
2022-07-05
kernel: initial partial pipe support
dzwdz
2022-07-01
kernel: add the debug_klog syscall for tracking down process ids
dzwdz
2022-06-30
syscall_wrappers: generate casts so the compiler doesn't complain
dzwdz
2022-06-29
kernel/vfs: add the OPEN_CREATE flag
dzwdz
2022-05-26
syscalls/memflag: FINDFREE flag
dzwdz
2022-05-06
syscalls: merge fork() and fs_fork2()
dzwdz
2022-05-02
meta: write a script to generate `src/init/syscalls.c`
dzwdz
2022-05-02
syscalls: fork() noreap flag
dzwdz
2022-04-12
kernel: make all sizes unsigned, sort out the sign mess
dzwdz
2022-03-27
shared/syscalls: change some pointer types to void*
dzwdz
2021-11-02
fork2() refactor: implement fs_fork2()
dzwdz
2021-11-02
fork2 refactor: every process now has (only) a single controlled vfs_backend
dzwdz
2021-10-04
remove support for processes returning strings on exit
dzwdz
2021-09-20
add an offset parameter to read() and write()
dzwdz
2021-09-20
use a single struct for all fs_wait return values
dzwdz
2021-09-18
merge `kernel/types.h` and `init/types.h`
dzwdz
2021-09-15
fs_wait: pass the file ID too
dzwdz
2021-09-14
merge the `syscall_handler` and `_syscall` declarations
dzwdz
2021-09-14
add support for 4-parameter syscalls
dzwdz
2021-09-12
simplify `fs_respond`'s signature
dzwdz
2021-09-12
implement part of `fs_respond`
dzwdz
2021-09-12
barebones `memflag()` implementation - letting the user allocate pages
dzwdz
2021-09-12
implement most of fs_wait
dzwdz
2021-09-11
replace `user_ptr` with a linux-style `__user` annotation
dzwdz
2021-09-09
basic _syscall_fs_wait() impl, doesn't pass the req yet
dzwdz
2021-09-07
implement fs_create(), front/back fs handles
dzwdz
2021-09-05
remove the fd_ / fs_ prefixes from syscall names
dzwdz
2021-09-04
rename file descriptors to handles
dzwdz
2021-08-25
change the signature of _syscall_fd_mount
dzwdz
2021-08-24
switch to using user_ptr for pointers coming from userland
dzwdz
2021-08-24
replace () with (void) in function definitions
dzwdz
2021-08-24
move syscalls.h to shared/syscalls.h
dzwdz
2021-08-24
remove _syscall_debug_log, as it's not needed anymore
dzwdz
2021-08-24
add some scaffolding for file descriptors
dzwdz
2021-08-22
fs_open() accepts a signed length, fixes an infinite loop
dzwdz
2021-08-22
basic mount resolving
dzwdz
2021-08-22
fs_open() stub
dzwdz
2021-08-22
fix typo in _syscall_await definition
dzwdz
2021-08-18
await() 1: wait for child to die, without message passing
dzwdz
2021-07-31
change the syscall naming convention; same one in kernel and userland
dzwdz