diff options
author | dzwdz | 2021-10-04 21:37:01 +0200 |
---|---|---|
committer | dzwdz | 2021-10-04 21:37:01 +0200 |
commit | 33ef18732abb1ec03469b7c0fe271a6599318682 (patch) | |
tree | 7e3c98ab62aff568d793632e206011def778711e /src/kernel/proc.h | |
parent | 1d5e56659af7945daac0f79a06b839bfd59c8f1f (diff) |
implement process_kill()
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r-- | src/kernel/proc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h index 592451c..7c338bb 100644 --- a/src/kernel/proc.h +++ b/src/kernel/proc.h @@ -53,6 +53,8 @@ _Noreturn void process_switch_any(void); // switches to any running process struct process *process_find(enum process_state); handle_t process_find_handle(struct process *proc); // finds the first free handle +void process_kill(struct process *proc, int ret); + /** Tries to transistion from PS_DEAD to PS_DEADER. * @return a nonnegative length of the quit message if successful, a negative val otherwise*/ int process_try2collect(struct process *dead); |