summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index c11c14b7d..4bd505b5d 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -84,13 +84,13 @@ public:
84 */ 84 */
85 bool IsWaitable() const { 85 bool IsWaitable() const {
86 switch (GetHandleType()) { 86 switch (GetHandleType()) {
87 case HandleType::ServerSession:
88 case HandleType::ServerPort:
89 case HandleType::Event: 87 case HandleType::Event:
90 case HandleType::Mutex: 88 case HandleType::Mutex:
91 case HandleType::Thread: 89 case HandleType::Thread:
92 case HandleType::Semaphore: 90 case HandleType::Semaphore:
93 case HandleType::Timer: 91 case HandleType::Timer:
92 case HandleType::ServerPort:
93 case HandleType::ServerSession:
94 return true; 94 return true;
95 95
96 case HandleType::Unknown: 96 case HandleType::Unknown:
@@ -101,6 +101,7 @@ public:
101 case HandleType::ResourceLimit: 101 case HandleType::ResourceLimit:
102 case HandleType::CodeSet: 102 case HandleType::CodeSet:
103 case HandleType::ClientPort: 103 case HandleType::ClientPort:
104 case HandleType::ClientSession:
104 return false; 105 return false;
105 } 106 }
106 } 107 }