Skip to content

Commit

Permalink
orbis-kernel: do not invoke coredump handler
Browse files Browse the repository at this point in the history
  • Loading branch information
DHrpcs3 committed Nov 13, 2024
1 parent fe6fa76 commit 6f80249
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions orbis-kernel/src/sys/sys_sce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -997,6 +997,12 @@ orbis::SysResult orbis::sys_mdbg_service(Thread *thread, uint32_t op,
break;
}

case 0x13: {
// wait for unhandled signal
while (true) {
std::this_thread::sleep_for(std::chrono::days(1));
}
}
case 0x14: {
// std::this_thread::sleep_for(std::chrono::years(1));
break;
Expand Down

0 comments on commit 6f80249

Please sign in to comment.