aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/Diagnostics/ProcessManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/Diagnostics/ProcessManager.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/Diagnostics/ProcessManager.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/MediaBrowser.Server.Startup.Common/Diagnostics/ProcessManager.cs b/MediaBrowser.Server.Startup.Common/Diagnostics/ProcessManager.cs
deleted file mode 100644
index d01756d0e..000000000
--- a/MediaBrowser.Server.Startup.Common/Diagnostics/ProcessManager.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using MediaBrowser.Controller.Diagnostics;
-using System.Diagnostics;
-
-namespace MediaBrowser.Server.Mono.Diagnostics
-{
- public class ProcessManager : IProcessManager
- {
- public void SuspendProcess(Process process)
- {
- process.PriorityClass = ProcessPriorityClass.Idle;
- }
-
- public void ResumeProcess(Process process)
- {
- process.PriorityClass = ProcessPriorityClass.Normal;
- }
-
- public bool SupportsSuspension
- {
- get { return true; }
- }
- }
-}