summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorGravatar bunnei2017-04-06 14:44:52 -0400
committerGravatar GitHub2017-04-06 14:44:52 -0400
commit26979cd6efb2c8e3870742f2ae5b1e93ec21782d (patch)
treeb689d7d51adabd07b69f84e9bf2ae7474240e12f /src/core/hle/ipc.h
parentMerge pull request #2634 from wwylele/battery (diff)
parenthopefully fix clang-format issues with old version (diff)
downloadyuzu-26979cd6efb2c8e3870742f2ae5b1e93ec21782d.tar.gz
yuzu-26979cd6efb2c8e3870742f2ae5b1e93ec21782d.tar.xz
yuzu-26979cd6efb2c8e3870742f2ae5b1e93ec21782d.zip
Merge pull request #2533 from Lectem/apt_ipchelper
IpcHelper enhancement and APT refactor
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r--src/core/hle/ipc.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h
index cd9a5863d..3a5d481a5 100644
--- a/src/core/hle/ipc.h
+++ b/src/core/hle/ipc.h
@@ -10,7 +10,8 @@
10 10
11namespace Kernel { 11namespace Kernel {
12 12
13static const int kCommandHeaderOffset = 0x80; ///< Offset into command buffer of header 13/// Offset into command buffer of header
14static const int kCommandHeaderOffset = 0x80;
14 15
15/** 16/**
16 * Returns a pointer to the command buffer in the current thread's TLS 17 * Returns a pointer to the command buffer in the current thread's TLS
@@ -26,8 +27,8 @@ inline u32* GetCommandBuffer(const int offset = 0) {
26 offset); 27 offset);
27} 28}
28 29
29static const int kStaticBuffersOffset = 30/// Offset into static buffers, relative to command buffer header
30 0x100; ///< Offset into static buffers, relative to command buffer header 31static const int kStaticBuffersOffset = 0x100;
31 32
32/** 33/**
33 * Returns a pointer to the static buffers area in the current thread's TLS 34 * Returns a pointer to the static buffers area in the current thread's TLS