summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
AgeCommit message (Expand)Author
2022-04-12kernel: make all sizes unsigned, sort out the sign messdzwdz
2022-04-10kernel: idle processdzwdz
2022-04-10kernel: process_find_multipledzwdz
2022-04-07kernel/vfs: implement a vfs request queuedzwdz
2021-11-02fork2 refactor: every process now has (only) a single controlled vfs_backenddzwdz
2021-10-04implement process_kill()dzwdz
2021-10-04remove support for processes returning strings on exitdzwdz
2021-09-21refactor `await_finish` into `process_try2collect`dzwdz
2021-09-20use a single struct for all fs_wait return valuesdzwdz
2021-09-18remove `struct process.stack_top` - it was unuseddzwdz
2021-09-15fs_wait: pass the file ID toodzwdz
2021-09-12implement part of `fs_respond`dzwdz
2021-09-12implement most of fs_waitdzwdz
2021-09-12vfs request refactor pt1dzwdz
2021-09-11replace `user_ptr` with a linux-style `__user` annotationdzwdz
2021-09-08save the vfs_op_request in the process structdzwdz
2021-09-08process struct: replace the generic saved_addr with an uniondzwdz
2021-09-08scaffolding for user fs dispatchdzwdz
2021-09-04refactor finding empty handles to a functiondzwdz
2021-09-04rename file descriptors to handlesdzwdz
2021-08-24switch to using user_ptr for pointers coming from userlanddzwdz
2021-08-24replace () with (void) in function definitionsdzwdz
2021-08-24add some scaffolding for file descriptorsdzwdz
2021-08-22basic mount resolvingdzwdz
2021-08-22process_switch_any: deduplicate some codedzwdz
2021-08-22await() 2: pass the exit messagedzwdz
2021-08-18await() 1: wait for child to die, without message passingdzwdz
2021-08-18processes now store a PID for debugging purposesdzwdz
2021-08-18fork(): store information about the parent toodzwdz
2021-08-18rename process_clone to process_forkdzwdz
2021-08-18store the processes as a tree instead of a listdzwdz
2021-07-26rename process_new() to process_seed()dzwdz
2021-07-26exit() now switches to the first running processdzwdz
2021-07-26fork() pt 1: cloning process memorydzwdz
2021-07-24fix some warningsdzwdz
2021-07-24save all registers on syscallsdzwdz
2021-07-20per-process virtual memorydzwdz
2021-07-10separate the source code from object files; more modular Makefiledzwdz