diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-12-18 03:33:36 -0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-18 03:33:36 -0200 |
| commit | 0039bb639493b2d1e2764cae380311ba8e87704b (patch) | |
| tree | 63a912a95c8261775c2acb8a5b9ca0f10ad4ae33 /Ryujinx.HLE/HOS/Kernel/KSynchronizationObject.cs | |
| parent | 2534a7f10c627810e6e0272b4cc9758e90f733c1 (diff) | |
Refactor SVC handler (#540)
* Refactor SVC handler
* Get rid of KernelErr
* Split kernel code files into multiple folders
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KSynchronizationObject.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Kernel/KSynchronizationObject.cs | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KSynchronizationObject.cs b/Ryujinx.HLE/HOS/Kernel/KSynchronizationObject.cs deleted file mode 100644 index 79f0673f..00000000 --- a/Ryujinx.HLE/HOS/Kernel/KSynchronizationObject.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Collections.Generic; - -namespace Ryujinx.HLE.HOS.Kernel -{ - class KSynchronizationObject : KAutoObject - { - public LinkedList<KThread> WaitingThreads; - - public KSynchronizationObject(Horizon system) : base(system) - { - WaitingThreads = new LinkedList<KThread>(); - } - - public LinkedListNode<KThread> AddWaitingThread(KThread thread) - { - return WaitingThreads.AddLast(thread); - } - - public void RemoveWaitingThread(LinkedListNode<KThread> node) - { - WaitingThreads.Remove(node); - } - - public virtual void Signal() - { - System.Synchronization.SignalObject(this); - } - - public virtual bool IsSignaled() - { - return false; - } - } -}
\ No newline at end of file |
