From efebd8f94de03ef5cab63803f0cf37fc39258682 Mon Sep 17 00:00:00 2001 From: jduncanator <1518948+jduncanator@users.noreply.github.com> Date: Fri, 15 Mar 2019 14:37:54 +1100 Subject: Print Guest Stack Trace in ServiceNotImplemented Exception (#650) * Print Guest Stack Trace in ServiceNotImplemented Exception * Remove PrintGuestStackTrace * Print Process Name and PID at the start of guest stack trace --- Ryujinx.HLE/HOS/Ipc/IpcHandler.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Ryujinx.HLE/HOS/Ipc') diff --git a/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs b/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs index 1eba4b41..9f087a1a 100644 --- a/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs +++ b/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs @@ -2,6 +2,7 @@ using ChocolArm64.Memory; using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Ipc; using Ryujinx.HLE.HOS.Kernel.Process; +using Ryujinx.HLE.HOS.Kernel.Threading; using System; using System.IO; @@ -13,6 +14,7 @@ namespace Ryujinx.HLE.HOS.Ipc Switch device, KProcess process, MemoryManager memory, + KThread thread, KClientSession session, IpcMessage request, long cmdPtr) @@ -36,6 +38,7 @@ namespace Ryujinx.HLE.HOS.Ipc device, process, memory, + thread, session, request, response, -- cgit v1.2.3