diff options
| author | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2019-03-15 14:37:54 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-15 14:37:54 +1100 |
| commit | efebd8f94de03ef5cab63803f0cf37fc39258682 (patch) | |
| tree | 57f7a6711c27290d3d0a00a918bdb965816eaf75 /Ryujinx.HLE/HOS/Kernel/SupervisorCall | |
| parent | 1bef70c068f8aeb6a3a518b8ca635de19122da14 (diff) | |
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
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/SupervisorCall')
| -rw-r--r-- | Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcIpc.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcIpc.cs b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcIpc.cs index e19d9d26..eb7595c0 100644 --- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcIpc.cs +++ b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcIpc.cs @@ -143,6 +143,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall _device, _process, _process.CpuMemory, + ipcMessage.Thread, ipcMessage.Session, ipcMessage.Message, ipcMessage.MessagePtr); |
