Print exit codes in hex
This commit is contained in:
parent
528723e490
commit
0a909eae0e
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ extern "C" z_err_t SyscallHandler(uint64_t call_id, void* req, void* resp) {
|
||||||
switch (call_id) {
|
switch (call_id) {
|
||||||
case Z_PROCESS_EXIT:
|
case Z_PROCESS_EXIT:
|
||||||
// FIXME: kill process here.
|
// FIXME: kill process here.
|
||||||
dbgln("Exit code: %u", req);
|
dbgln("Exit code: %x", req);
|
||||||
thread->Exit();
|
thread->Exit();
|
||||||
panic("Returned from thread exit");
|
panic("Returned from thread exit");
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue