summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-07-06 23:15:40 -0400
committerGravatar bunnei2014-07-08 18:46:38 -0400
commit3eb89f3e98b118f7829d3e56f32bcacbe58afc46 (patch)
treea4e8761b1b55ca53941db9f2ce8c04f224226238 /src/core/hle/kernel/kernel.h
parentThread: Added functions to resume threads from address arbitration. (diff)
downloadyuzu-3eb89f3e98b118f7829d3e56f32bcacbe58afc46.tar.gz
yuzu-3eb89f3e98b118f7829d3e56f32bcacbe58afc46.tar.xz
yuzu-3eb89f3e98b118f7829d3e56f32bcacbe58afc46.zip
Kernel: Added preliminary support for address arbiters.
AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 69f4ddd37..d9afcdd25 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -26,7 +26,7 @@ enum class HandleType : u32 {
26 Redirection = 6, 26 Redirection = 6,
27 Thread = 7, 27 Thread = 7,
28 Process = 8, 28 Process = 8,
29 Arbiter = 9, 29 AddressArbiter = 9,
30 File = 10, 30 File = 10,
31 Semaphore = 11, 31 Semaphore = 11,
32 Archive = 12, 32 Archive = 12,