summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Gravatar Subv2017-01-041-38/+22
* Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Gravatar Subv2017-01-041-13/+22
* Kernel/Mutex: Implemented priority inheritance.Gravatar Subv2017-01-041-13/+45
* Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv2017-01-041-18/+6
* Kernel/Synch: Do not attempt a reschedule on every syscall.Gravatar Subv2017-01-041-0/+1
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-4/+1
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-181-4/+2
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-2/+4
* kernel: Fix svcWaitSynch to always acquire requested wait objects.Gravatar bunnei2015-06-161-8/+1
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei2015-05-201-0/+2
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-071-1/+1
* Kernel: Implemented priority inheritance for mutexes.Gravatar bunnei2015-04-091-1/+9
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-101-1/+1
* Mutex: Locks should be recursive.Gravatar bunnei2015-02-091-14/+19
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-021-4/+2
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-021-2/+2
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-021-0/+3
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-021-21/+7
* Kernel: Convert Mutex to not use HandlesGravatar Yuri Kunde Schlesner2015-01-301-88/+43
* Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner2015-01-301-14/+4
* Mutex: Cleanup and remove redundant code.Gravatar bunnei2015-01-211-45/+27
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-211-1/+1
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-211-15/+9
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-211-2/+2
* Mutex: Fix a bug where the thread should not wait if it already has the mutex.Gravatar bunnei2015-01-211-1/+4
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-211-7/+2
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-211-4/+4
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-211-5/+14
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-211-4/+4
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei2015-01-211-23/+6
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-091-3/+3
* Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-091-6/+13
* Mutex: Add the calling thread to the waiting list when neededGravatar Subv2015-01-041-2/+2
* Kernel: New handle managerGravatar Yuri Kunde Schlesner2014-12-281-2/+3
* Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsGravatar Yuri Kunde Schlesner2014-12-281-2/+2
* Rename ObjectPool to HandleTableGravatar Yuri Kunde Schlesner2014-12-281-3/+3
* License changeGravatar purpasmart962014-12-201-1/+1
* Mutex: Remove some forward declarationsGravatar Subv2014-12-071-16/+15
* Mutex: Release all held mutexes when a thread exits.Gravatar Subv2014-12-071-22/+46
* Mutex: Properly lock the mutex when a thread enters itGravatar Subv2014-12-051-12/+9
* Mutex: Changed behavior to always release mutex for all threads.Gravatar bunnei2014-11-261-8/+7
* Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-241-10/+0
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-241-12/+13
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ...Gravatar Emmanuel Gil Peyrot2014-11-191-2/+2
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-261-5/+5
* Core: Alter the kernel string functions to use std::string instead of const c...Gravatar Lioncash2014-08-171-2/+2
* Kernel: Updated Event and Mutex to specify handle that they are blocking for.Gravatar bunnei2014-08-051-1/+1
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-131-1/+1
* Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-131-2/+2