summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/mutex.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei2014-06-131-1/+1
* Kernel: Updated various kernel function "name" arguments to be const references.bunnei2014-06-131-2/+2
* HLE: Updated various handle debug assertions to be more clear.bunnei2014-06-131-1/+1
* Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.bunnei2014-06-131-2/+1
* Kernel: Updated several member functions to be constbunnei2014-06-131-3/+3
* Kernel: Added real support for thread and event blockingbunnei2014-06-131-0/+5
* svc: added optional name field to Event and Mutex (used for debugging)bunnei2014-06-031-3/+9
* mutex: fixed typo in ReleaseMutexbunnei2014-05-301-1/+3
* mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertionsbunnei2014-05-281-0/+6
* kernel: added WaitSynchronization method to Kernel::Objectbunnei2014-05-271-0/+11
* kernel: updated SyncRequest to take boolean thread wait result as a parameterbunnei2014-05-271-2/+6
* kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestbunnei2014-05-271-0/+5
* kernel: refactored function naming to remove "__" prefixbunnei2014-05-231-14/+14
* mutex: refactored the interface to code to return a Mutex* handlebunnei2014-05-211-2/+12
* mutex: initial commit of HLE modulebunnei2014-05-211-0/+122