summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-29 15:45:30 -0700
committerGravatar Yuri Kunde Schlesner2017-05-29 16:16:46 -0700
commit64ecf81a3cf6d6e0a4e4e915e1da2f0bcf2f1cb4 (patch)
treef34182d882d614273dd709f0029039743bc58c21 /src/core/hle/kernel/mutex.h
parentKernel: Removed HandleTable::GetWaitObject (diff)
downloadyuzu-64ecf81a3cf6d6e0a4e4e915e1da2f0bcf2f1cb4.tar.gz
yuzu-64ecf81a3cf6d6e0a4e4e915e1da2f0bcf2f1cb4.tar.xz
yuzu-64ecf81a3cf6d6e0a4e4e915e1da2f0bcf2f1cb4.zip
Kernel: Move WaitObject to a separate file
Now that HandleTable doesn't directly depend on WaitObject anymore, this can be separated from the main kernel.h header.
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
-rw-r--r--src/core/hle/kernel/mutex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h
index c57adf400..bacacd690 100644
--- a/src/core/hle/kernel/mutex.h
+++ b/src/core/hle/kernel/mutex.h
@@ -7,6 +7,7 @@
7#include <string> 7#include <string>
8#include "common/common_types.h" 8#include "common/common_types.h"
9#include "core/hle/kernel/kernel.h" 9#include "core/hle/kernel/kernel.h"
10#include "core/hle/kernel/wait_object.h"
10 11
11namespace Kernel { 12namespace Kernel {
12 13