summaryrefslogtreecommitdiff
path: root/src/kernel/syscalls.h
AgeCommit message (Collapse)Author
2021-08-24move syscalls.h to shared/syscalls.hdzwdz
2021-08-24remove _syscall_debug_log, as it's not needed anymoredzwdz
2021-08-24add some scaffolding for file descriptorsdzwdz
2021-08-22fs_open() accepts a signed length, fixes an infinite loopdzwdz
it occureed if the path_simplify returned a negative value - instead of being interpreter as an error it just carried on, ending up in an infinite loop.
2021-08-22basic mount resolvingdzwdz
2021-08-22fs_open() stubdzwdz
2021-08-22fix typo in _syscall_await definitiondzwdz
2021-08-18await() 1: wait for child to die, without message passingdzwdz
The length is a int, because the syscall will have a signed output. A negative return value will mean an error (such as when it gets called by a childless process).
2021-08-18fork() now has a return value; you can tell the child and parent apartdzwdz
2021-07-31try documenting the syscalls (and fail badly)dzwdz
2021-07-31change the syscall naming convention; same one in kernel and userlanddzwdz
2021-07-26fork() pt 1: cloning process memorydzwdz
2021-07-23add a barebones exit() syscalldzwdz
2021-07-22implement the debuglog() syscalldzwdz