[kernel] Remove status code from thread exit

The status code from thread exit had too many issues, (eg, how does it
relate to process exit code? what happens when different threads exit
with different exit codes?) and not enough value, so I'm getting rid of
it.
This commit is contained in:
Justin C. Miller
2022-10-20 21:49:40 -07:00
parent c02aa084d1
commit 194776d226
6 changed files with 21 additions and 33 deletions

View File

@@ -83,7 +83,7 @@ channel_pump_loop()
void
pump_proc()
{
j6_thread_exit(channel_pump_loop());
j6_process_exit(channel_pump_loop());
}
int