28 lines
No EOL
562 B
C#
28 lines
No EOL
562 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
} |