diff options
| author | 2015-03-23 00:50:06 -0400 | |
|---|---|---|
| committer | 2015-04-09 19:04:19 -0400 | |
| commit | e08f55b1a7a6136377d3de1dc8f7f9664f5524d6 (patch) | |
| tree | 4e83c23cacf91fd91fc68b960bf10c6e6a4cb04a /src/core/hle/kernel/thread.h | |
| parent | Merge pull request #690 from Zaneo/sharedmemory (diff) | |
| download | yuzu-e08f55b1a7a6136377d3de1dc8f7f9664f5524d6.tar.gz yuzu-e08f55b1a7a6136377d3de1dc8f7f9664f5524d6.tar.xz yuzu-e08f55b1a7a6136377d3de1dc8f7f9664f5524d6.zip | |
Kernel: Fixed default thread priority.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index cfd073a70..bde4eecf2 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -18,10 +18,9 @@ | |||
| 18 | #include "core/hle/result.h" | 18 | #include "core/hle/result.h" |
| 19 | 19 | ||
| 20 | enum ThreadPriority { | 20 | enum ThreadPriority { |
| 21 | THREADPRIO_HIGHEST = 0, ///< Highest thread priority | 21 | THREADPRIO_HIGHEST = 0x0, ///< Highest thread priority |
| 22 | THREADPRIO_DEFAULT = 16, ///< Default thread priority for userland apps | 22 | THREADPRIO_DEFAULT = 0x30, ///< Default thread priority for userland apps |
| 23 | THREADPRIO_LOW = 31, ///< Low range of thread priority for userland apps | 23 | THREADPRIO_LOWEST = 0x3F, ///< Lowest thread priority |
| 24 | THREADPRIO_LOWEST = 63, ///< Thread priority max checked by svcCreateThread | ||
| 25 | }; | 24 | }; |
| 26 | 25 | ||
| 27 | enum ThreadProcessorId { | 26 | enum ThreadProcessorId { |