summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar Subv2016-06-17 15:24:38 -0500
committerGravatar Subv2016-11-30 23:02:06 -0500
commit0a33d915f88b89e2fae20edc1e33a8ef60a2519c (patch)
treeb0eb3db13d9a21160ceb2fbb8d9e23ab1229659a /src/core/hle/kernel/kernel.h
parent Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inte... (diff)
downloadyuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.gz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.xz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.zip
fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
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 }