kern: Svc(Legacy)ContinueDebugEvent
This commit is contained in:
@@ -27,6 +27,8 @@ namespace ams::svc {
|
||||
|
||||
R_DEFINE_ERROR_RESULT(NotImplemented, 33);
|
||||
|
||||
R_DEFINE_ERROR_RESULT(StopProcessingException, 54);
|
||||
|
||||
R_DEFINE_ERROR_RESULT(NoSynchronizationObject, 57);
|
||||
|
||||
R_DEFINE_ERROR_RESULT(TerminationRequested, 59);
|
||||
|
||||
@@ -292,6 +292,15 @@ namespace ams::svc {
|
||||
ThreadContextFlag_All = (ThreadContextFlag_General | ThreadContextFlag_Control | ThreadContextFlag_Fpu | ThreadContextFlag_FpuControl),
|
||||
};
|
||||
|
||||
enum ContinueFlag : u32 {
|
||||
ContinueFlag_ExceptionHandled = (1u << 0),
|
||||
ContinueFlag_EnableExceptionEvent = (1u << 1),
|
||||
ContinueFlag_ContinueAll = (1u << 2),
|
||||
ContinueFlag_ContinueOthers = (1u << 3),
|
||||
|
||||
ContinueFlag_AllMask = (1u << 4) - 1,
|
||||
};
|
||||
|
||||
enum ThreadExitReason : u32 {
|
||||
ThreadExitReason_ExitThread = 0,
|
||||
ThreadExitReason_TerminateThread = 1,
|
||||
|
||||
Reference in New Issue
Block a user