diff options
author | Mary <me@thog.eu> | 2020-08-30 19:06:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 19:06:05 +0200 |
commit | 4f3ae6f62ca5858c2b74eba5a15bad5dff580349 (patch) | |
tree | 1ab0427f411d530b253abc73bb6ef97b64a3a6d6 /Ryujinx.HLE/HOS/Services | |
parent | b9398f1f3a13612a0bc3e64205cdb7eca3f48d4d (diff) |
Remove the Ryujinx.Debugger project (#1506)
This project wasn't really used by anyone and isn't worth mantaining.
This commit remove the profiler entirely from Ryujinx and remove the associated CI tasks.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/IpcService.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Ryujinx.HLE/HOS/Services/IpcService.cs b/Ryujinx.HLE/HOS/Services/IpcService.cs index 0583e8ba..cff1b816 100644 --- a/Ryujinx.HLE/HOS/Services/IpcService.cs +++ b/Ryujinx.HLE/HOS/Services/IpcService.cs @@ -6,7 +6,6 @@ using Ryujinx.HLE.HOS.Kernel.Ipc; using System; using System.Collections.Generic; using System.IO; -using Ryujinx.Debugger.Profiler; using System.Reflection; using System.Linq; @@ -111,16 +110,7 @@ namespace Ryujinx.HLE.HOS.Services { Logger.Debug?.Print(LogClass.KernelIpc, $"{service.GetType().Name}: {processRequest.Name}"); - ProfileConfig profile = Profiles.ServiceCall; - - profile.SessionGroup = service.GetType().Name; - profile.SessionItem = processRequest.Name; - - Profile.Begin(profile); - result = (ResultCode)processRequest.Invoke(service, new object[] { context }); - - Profile.End(profile); } else { |