changed a comment

This commit is contained in:
bunnei 2014-05-17 13:47:55 -04:00
parent cfea5fdd58
commit 09b8e8fb6a
2 changed files with 2 additions and 2 deletions

View file

@ -354,7 +354,7 @@ void __KernelReschedule(const char *reason) {
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Wait thread - on WaitSynchronization
/// Put current thread in a wait state - on WaitSynchronization
void __KernelWaitThread_Synchronization() {
// TODO(bunnei): Just a placeholder function for now... FixMe
__KernelWaitCurThread(WAITTYPE_SYNCH, "waitSynchronization called");

View file

@ -31,5 +31,5 @@ Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK
void __KernelThreadingInit();
void __KernelThreadingShutdown();
/// Wait thread - on WaitSynchronization
/// Put current thread in a wait state - on WaitSynchronization
void __KernelWaitThread_Synchronization();