From 05cde6649b7e7ca7d6b88c9dffb373264d90c586 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Mon, 14 May 2018 12:51:06 -0400 Subject: [PATCH] Updated svcGetDebugEvent and svcContinueDebugEvent in svc.h. --- nx/include/switch/kernel/svc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/kernel/svc.h b/nx/include/switch/kernel/svc.h index 0ed124ba..7f67be0c 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -802,7 +802,7 @@ Result svcBreakDebugProcess(Handle debug); * @note Syscall number 0x63. * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available. */ -Result svcGetDebugEvent(u8* event_out, Handle* debug); +Result svcGetDebugEvent(u8* event_out, Handle debug); /** * @brief Continues a debugging session. @@ -810,7 +810,7 @@ Result svcGetDebugEvent(u8* event_out, Handle* debug); * @note Syscall number 0x64. * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available. */ -Result svcContinueDebugEvent(Handle debug, u32 flags, u64 unk); +Result svcContinueDebugEvent(Handle debug, u32 flags, u64 threadID); /** * @brief Gets the context of a thread in a debugging session.