diff options
| author | 2014-05-17 13:47:55 -0400 | |
|---|---|---|
| committer | 2014-05-17 13:47:55 -0400 | |
| commit | 09b8e8fb6afbbcc3dd6127ee02f7ac1611eb85aa (patch) | |
| tree | 1671fef9ab2f9bf06496d8de775da68176758881 /src | |
| parent | cleanups to SVC CreateThread (diff) | |
| download | yuzu-09b8e8fb6afbbcc3dd6127ee02f7ac1611eb85aa.tar.gz yuzu-09b8e8fb6afbbcc3dd6127ee02f7ac1611eb85aa.tar.xz yuzu-09b8e8fb6afbbcc3dd6127ee02f7ac1611eb85aa.zip | |
changed a comment
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index b967b3c62..d0bc9c8d8 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -354,7 +354,7 @@ void __KernelReschedule(const char *reason) { | |||
| 354 | 354 | ||
| 355 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 355 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 356 | 356 | ||
| 357 | /// Wait thread - on WaitSynchronization | 357 | /// Put current thread in a wait state - on WaitSynchronization |
| 358 | void __KernelWaitThread_Synchronization() { | 358 | void __KernelWaitThread_Synchronization() { |
| 359 | // TODO(bunnei): Just a placeholder function for now... FixMe | 359 | // TODO(bunnei): Just a placeholder function for now... FixMe |
| 360 | __KernelWaitCurThread(WAITTYPE_SYNCH, "waitSynchronization called"); | 360 | __KernelWaitCurThread(WAITTYPE_SYNCH, "waitSynchronization called"); |
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 8138be26f..0d0f46500 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -31,5 +31,5 @@ Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK | |||
| 31 | void __KernelThreadingInit(); | 31 | void __KernelThreadingInit(); |
| 32 | void __KernelThreadingShutdown(); | 32 | void __KernelThreadingShutdown(); |
| 33 | 33 | ||
| 34 | /// Wait thread - on WaitSynchronization | 34 | /// Put current thread in a wait state - on WaitSynchronization |
| 35 | void __KernelWaitThread_Synchronization(); | 35 | void __KernelWaitThread_Synchronization(); |