diff options
Diffstat (limited to 'Ryujinx.Core/OsHle/Handles/KSynchronizationObject.cs')
| -rw-r--r-- | Ryujinx.Core/OsHle/Handles/KSynchronizationObject.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Ryujinx.Core/OsHle/Handles/KSynchronizationObject.cs b/Ryujinx.Core/OsHle/Handles/KSynchronizationObject.cs deleted file mode 100644 index 3f78b965..00000000 --- a/Ryujinx.Core/OsHle/Handles/KSynchronizationObject.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Threading; - -namespace Ryujinx.Core.OsHle.Handles -{ - class KSynchronizationObject : IDisposable - { - public ManualResetEvent WaitEvent { get; private set; } - - public KSynchronizationObject() - { - WaitEvent = new ManualResetEvent(false); - } - - public void Dispose() - { - Dispose(true); - } - - protected virtual void Dispose(bool Disposing) - { - if (Disposing) - { - WaitEvent.Dispose(); - } - } - } -}
\ No newline at end of file |
