Skip to content
Snippets Groups Projects
Commit 09b8e8fb authored by bunnei's avatar bunnei
Browse files

changed a comment

parent cfea5fdd
No related branches found
No related tags found
No related merge requests found
...@@ -354,7 +354,7 @@ void __KernelReschedule(const char *reason) { ...@@ -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() { void __KernelWaitThread_Synchronization() {
// TODO(bunnei): Just a placeholder function for now... FixMe // TODO(bunnei): Just a placeholder function for now... FixMe
__KernelWaitCurThread(WAITTYPE_SYNCH, "waitSynchronization called"); __KernelWaitCurThread(WAITTYPE_SYNCH, "waitSynchronization called");
......
...@@ -31,5 +31,5 @@ Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK ...@@ -31,5 +31,5 @@ Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK
void __KernelThreadingInit(); void __KernelThreadingInit();
void __KernelThreadingShutdown(); void __KernelThreadingShutdown();
/// Wait thread - on WaitSynchronization /// Put current thread in a wait state - on WaitSynchronization
void __KernelWaitThread_Synchronization(); void __KernelWaitThread_Synchronization();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment