kernel: refactored function naming to remove "__" prefix

This commit is contained in:
bunnei 2014-05-22 19:06:12 -04:00
parent ac21e8f2db
commit d26f3d4c1f
6 changed files with 75 additions and 65 deletions

View file

@ -59,8 +59,8 @@ void WaitCurThread(WaitType wait_type, const char* reason);
/// Resumes a thread from waiting by marking it as "ready"
void ResumeThreadFromWait(Handle handle);
/// Gets the current thread
Handle GetCurrentThread();
/// Gets the current thread handle
Handle GetCurrentThreadHandle();
/// Put current thread in a wait state - on WaitSynchronization
void WaitThread_Synchronization();