diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 92f2c423b..233bcbdbd 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -90,6 +90,12 @@ public: | |||
| 90 | void SetPriority(s32 priority); | 90 | void SetPriority(s32 priority); |
| 91 | 91 | ||
| 92 | /** | 92 | /** |
| 93 | * Temporarily boosts the thread's priority until the next time it is scheduled | ||
| 94 | * @param priority The new priority | ||
| 95 | */ | ||
| 96 | void BoostPriority(s32 priority); | ||
| 97 | |||
| 98 | /** | ||
| 93 | * Gets the thread's thread ID | 99 | * Gets the thread's thread ID |
| 94 | * @return The thread's ID | 100 | * @return The thread's ID |
| 95 | */ | 101 | */ |