diff options
| author | 2014-05-22 19:36:56 -0400 | |
|---|---|---|
| committer | 2014-05-22 19:36:56 -0400 | |
| commit | b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe (patch) | |
| tree | df05518971810d04f48a9e38505e487b5d29c323 /src/core/hle/kernel/thread.h | |
| parent | thread: removed unused SwitchContext/Reschedule reason field, added missing a... (diff) | |
| download | yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.gz yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.tar.xz yuzu-b99ac2c3d67e2bcaa2c6eac220f1e93f4576c4fe.zip | |
thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reason" argument
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index d54f47aaf..9628f165d 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -53,8 +53,8 @@ Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE); | |||
| 53 | /// Reschedules to the next available thread (call after current thread is suspended) | 53 | /// Reschedules to the next available thread (call after current thread is suspended) |
| 54 | void Reschedule(); | 54 | void Reschedule(); |
| 55 | 55 | ||
| 56 | /// Puts a thread in the wait state for the given type/reason | 56 | /// Puts the current thread in the wait state for the given type |
| 57 | void WaitCurThread(WaitType wait_type, const char* reason); | 57 | void WaitCurrentThread(WaitType wait_type); |
| 58 | 58 | ||
| 59 | /// Resumes a thread from waiting by marking it as "ready" | 59 | /// Resumes a thread from waiting by marking it as "ready" |
| 60 | void ResumeThreadFromWait(Handle handle); | 60 | void ResumeThreadFromWait(Handle handle); |