Allow procmgr to recognize unhandled exceptions.

This commit is contained in:
4lDO2
2025-04-15 15:18:42 +02:00
parent 020b8ad415
commit 2e6122bc7e
9 changed files with 134 additions and 54 deletions
+3 -1
View File
@@ -44,7 +44,9 @@ pub enum Status {
HardBlocked {
reason: HardBlockedReason,
},
Dead,
Dead {
excp: Option<syscall::Exception>,
},
}
impl Status {