aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/mutex.cpp
Commit message (Expand)AuthorAge
* kernel: Fix svcWaitSynch to always acquire requested wait objects.Gravatar bunnei2015-06-16
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei2015-05-20
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
* Kernel: Implemented priority inheritance for mutexes.Gravatar bunnei2015-04-09
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
* Mutex: Locks should be recursive.Gravatar bunnei2015-02-09
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-02
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-02
* Kernel: Convert Mutex to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
* Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner2015-01-30
* Mutex: Cleanup and remove redundant code.Gravatar bunnei2015-01-21
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-21
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-21
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-21
* Mutex: Fix a bug where the thread should not wait if it already has the mutex.Gravatar bunnei2015-01-21
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-21
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-21
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-21
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-21
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei2015-01-21
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-09
* Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-09
* Mutex: Add the calling thread to the waiting list when neededGravatar Subv2015-01-04
* Kernel: New handle managerGravatar Yuri Kunde Schlesner2014-12-28
* Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsGravatar Yuri Kunde Schlesner2014-12-28
* Rename ObjectPool to HandleTableGravatar Yuri Kunde Schlesner2014-12-28
* License changeGravatar purpasmart962014-12-20
* Mutex: Remove some forward declarationsGravatar Subv2014-12-07
* Mutex: Release all held mutexes when a thread exits.Gravatar Subv2014-12-07
* Mutex: Properly lock the mutex when a thread enters itGravatar Subv2014-12-05
* Mutex: Changed behavior to always release mutex for all threads.Gravatar bunnei2014-11-26
* Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-24
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ...Gravatar Emmanuel Gil Peyrot2014-11-19
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-26
* Core: Alter the kernel string functions to use std::string instead of const c...Gravatar Lioncash2014-08-17
* Kernel: Updated Event and Mutex to specify handle that they are blocking for.Gravatar bunnei2014-08-05
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-13
* Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-13
* HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-13
* Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-13
* Kernel: Updated several member functions to be constGravatar bunnei2014-06-13
* Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-13
* svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-02
* mutex: fixed typo in ReleaseMutexGravatar bunnei2014-05-29
* mutex: added preliminary SyncRequest/WaitSynchronization, added some comments...Gravatar bunnei2014-05-27
* kernel: added WaitSynchronization method to Kernel::ObjectGravatar bunnei2014-05-26
* kernel: updated SyncRequest to take boolean thread wait result as a parameterGravatar bunnei2014-05-26