diff options
| author | 2022-09-05 17:27:48 -0700 | |
|---|---|---|
| committer | 2022-10-18 19:13:34 -0700 | |
| commit | e63a5459e361d8f33fb9045bc9684d516d087b0c (patch) | |
| tree | 6c7158326abe4953de7037e8565643311f0381f7 /src | |
| parent | Merge pull request #9054 from Docteh/just_lz4 (diff) | |
| download | yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.gz yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.xz yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.zip | |
core: hle: kernel: svc_common: Add WaitInfinite & cleanup.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/svc_common.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc_common.h b/src/core/hle/kernel/svc_common.h index 95750c3eb..85506710e 100644 --- a/src/core/hle/kernel/svc_common.h +++ b/src/core/hle/kernel/svc_common.h | |||
| @@ -14,8 +14,11 @@ namespace Kernel::Svc { | |||
| 14 | 14 | ||
| 15 | using namespace Common::Literals; | 15 | using namespace Common::Literals; |
| 16 | 16 | ||
| 17 | constexpr s32 ArgumentHandleCountMax = 0x40; | 17 | constexpr inline s32 ArgumentHandleCountMax = 0x40; |
| 18 | constexpr u32 HandleWaitMask{1u << 30}; | 18 | |
| 19 | constexpr inline u32 HandleWaitMask = 1u << 30; | ||
| 20 | |||
| 21 | constexpr inline s64 WaitInfinite = -1; | ||
| 19 | 22 | ||
| 20 | constexpr inline std::size_t HeapSizeAlignment = 2_MiB; | 23 | constexpr inline std::size_t HeapSizeAlignment = 2_MiB; |
| 21 | 24 | ||