summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-06-29 00:53:10 +0200
committerGitHub <noreply@github.com>2016-06-29 00:53:10 +0200
commit87c07643ff14f2a5ea61fc92c2a83529a166781a (patch)
tree3a83c873ee6971aada11376cf604159c8ab1fb8c /src/core/hle/kernel
parentMerge pull request #1930 from scurest/superfluous-moves (diff)
parentFix parameter name in EnableNotification (diff)
downloadyuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.tar
yuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.tar.gz
yuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.tar.bz2
yuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.tar.lz
yuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.tar.xz
yuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.tar.zst
yuzu-87c07643ff14f2a5ea61fc92c2a83529a166781a.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/session.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h
index 6ddaf970e..26b086f87 100644
--- a/src/core/hle/kernel/session.h
+++ b/src/core/hle/kernel/session.h
@@ -32,6 +32,10 @@ constexpr u32 CallingPidDesc() {
return 0x20;
}
+constexpr u32 TransferHandleDesc() {
+ return 0x20;
+}
+
constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) {
return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10);
}