mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
svc: add BreakReason flags
This commit is contained in:
parent
1b9acc4a6a
commit
3a01fd1ebc
1 changed files with 10 additions and 1 deletions
|
@ -432,7 +432,16 @@ namespace ams::svc {
|
|||
};
|
||||
|
||||
enum BreakReason : u32 {
|
||||
/* TODO */
|
||||
BreakReason_Panic = 0,
|
||||
BreakReason_Assert = 1,
|
||||
BreakReason_User = 2,
|
||||
BreakReason_PreLoadDll = 3,
|
||||
BreakReason_PostLoadDll = 4,
|
||||
BreakReason_PreUnloadDll = 5,
|
||||
BreakReason_PostUnloadDll = 6,
|
||||
BreakReason_CppException = 7,
|
||||
|
||||
BreakReason_NotificationOnlyFlag = 0x80000000,
|
||||
};
|
||||
|
||||
enum KernelDebugType : u32 {
|
||||
|
|
Loading…
Reference in a new issue