Process syscall to terminate the current task. * * @param notify Send out fault notifications. * */
| 621 | * |
| 622 | */ |
| 623 | sys_errno_t sys_task_exit(sysarg_t notify) |
| 624 | { |
| 625 | task_kill_self(notify); |
| 626 | unreachable(); |
| 627 | } |
| 628 | |
| 629 | static void task_print(task_t *task, bool additional) |
| 630 | { |
nothing calls this directly
no test coverage detected