summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/mutex.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei1-1/+1
2014-06-13Kernel: Updated various kernel function "name" arguments to be const references.bunnei1-2/+2
2014-06-13HLE: Updated various handle debug assertions to be more clear.bunnei1-1/+1
2014-06-13Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.bunnei1-2/+1
2014-06-13Kernel: Updated several member functions to be constbunnei1-3/+3
2014-06-13Kernel: Added real support for thread and event blockingbunnei1-0/+5
2014-06-03svc: added optional name field to Event and Mutex (used for debugging)bunnei1-3/+9
2014-05-30mutex: fixed typo in ReleaseMutexbunnei1-1/+3
2014-05-28mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertionsbunnei1-0/+6
2014-05-27kernel: added WaitSynchronization method to Kernel::Objectbunnei1-0/+11
2014-05-27kernel: updated SyncRequest to take boolean thread wait result as a parameterbunnei1-2/+6
2014-05-27kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestbunnei1-0/+5
2014-05-23kernel: refactored function naming to remove "__" prefixbunnei1-14/+14
2014-05-21mutex: refactored the interface to code to return a Mutex* handlebunnei1-2/+12
2014-05-21mutex: initial commit of HLE modulebunnei1-0/+122