summaryrefslogtreecommitdiff
path: root/src/kernel/proc.c
AgeCommit message (Expand)Author
2021-10-04remove support for processes returning strings on exitdzwdz
2021-09-21start using sparse's `-Wdecl`dzwdz
2021-09-21implement (safe) min/max macrosdzwdz
2021-09-21refactor `await_finish` into `process_try2collect`dzwdz
2021-09-20create a few specialized panic()sdzwdz
2021-09-19show the malloc balance on halt; remove a bad kfree() calldzwdz
2021-09-18remove `struct process.stack_top` - it was unuseddzwdz
2021-09-12implement part of `fs_respond`dzwdz
2021-09-11replace `user_ptr` with a linux-style `__user` annotationdzwdz
2021-09-08style: simplify the `kmalloc(sizeof(...` callsdzwdz
2021-09-05move most of the memory stuff to kernel/mem/dzwdz
2021-09-04refactor finding empty handles to a functiondzwdz
2021-09-04rename file descriptors to handlesdzwdz
2021-08-25remove FD_STDOUTdzwdz
2021-08-25implement vfs_mount_seed, which creates the vfs passed to initdzwdz
2021-08-24switch to using user_ptr for pointers coming from userlanddzwdz
2021-08-24replace () with (void) in function definitionsdzwdz
2021-08-24implement FD_SPECIAL_TTY, an stdout equaliventdzwdz
2021-08-24add some scaffolding for file descriptorsdzwdz
2021-08-22basic mount resolvingdzwdz
2021-08-22process_switch_any: deduplicate some codedzwdz
2021-08-22fix almost all compiler warningsdzwdz
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-31kmalloc() and kfree() stubsdzwdz
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-24sysexit() now overrides all registersdzwdz
2021-07-24save all registers on syscallsdzwdz
2021-07-21fix init stack alignmentdzwdz
2021-07-20per-process virtual memorydzwdz
2021-07-18move all kernel sources to src/kernel/dzwdz
2021-07-10a sensible source structuredzwdz
2021-07-10separate the source code from object files; more modular Makefiledzwdz