aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp
AgeCommit message (Expand)Author
2018-07-23mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by referenceLioncash
2018-07-19thread: Convert ThreadStatus into an enum classLioncash
2018-06-21Kernel/Arbiters: Add stubs for 4.x SignalToAddress/WaitForAddres SVCs.Michael Scire
2018-05-20Mutex: Do not assert when the mutex waiting threads list isn't empty on mutex...Subv
2018-04-23Kernel: Implemented mutex priority inheritance.Subv
2018-04-20Kernel: Remove old and unused Mutex code.Subv
2018-04-20Kernel: Corrected the implementation of svcArbitrateLock and svcArbitrateUnlock.Subv
2018-02-05mutex: Update hasWaiters on release.bunnei
2018-01-08mutex: Remove unused call to VerifyGuestState.bunnei
2018-01-08Kernel: Properly keep track of mutex lock data in the guest memory. This fixe...Subv
2018-01-01svc: Implement svcLockMutex.bunnei
2017-10-09Merge remote-tracking branch 'upstream/master' into nxbunnei
2017-09-30Fixed type conversion ambiguityHuw Pascoe
2017-01-04Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Subv
2017-01-04Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Subv
2017-01-04Kernel/Mutex: Implemented priority inheritance.Subv
2017-01-04Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv
2017-01-04Kernel/Synch: Do not attempt a reschedule on every syscall.Subv
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot
2016-09-18Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot
2015-06-16kernel: Fix svcWaitSynch to always acquire requested wait objects.bunnei
2015-05-20Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.bunnei
2015-05-07Common: Remove common.hYuri Kunde Schlesner
2015-04-09Kernel: Implemented priority inheritance for mutexes.bunnei
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.harchshift
2015-02-09Mutex: Locks should be recursive.bunnei
2015-02-02Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner
2015-02-02Kernel: Make WaitObjects share ownership of Threads waiting on themYuri Kunde Schlesner
2015-02-02Explicitly instantiate constructors/destructors for Kernel objectsYuri Kunde Schlesner
2015-02-02Mutex: Replace g_mutex_held_locks with a set inside ThreadYuri Kunde Schlesner
2015-01-30Kernel: Convert Mutex to not use HandlesYuri Kunde Schlesner
2015-01-30Kernel: Remove useless/duplicated comments; mark functions staticYuri Kunde Schlesner
2015-01-21Mutex: Cleanup and remove redundant code.bunnei
2015-01-21Kernel: Renamed some functions for clarity.bunnei
2015-01-21Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.bunnei
2015-01-21WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...bunnei
2015-01-21Mutex: Fix a bug where the thread should not wait if it already has the mutex.bunnei
2015-01-21Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.bunnei
2015-01-21WaitSynchronizationN: Refactor to fix several bugsbunnei
2015-01-21Kernel: Separate WaitSynchronization into Wait and Acquire methods.bunnei
2015-01-21WaitSynchronizationN: Implement return valuesbunnei
2015-01-21Kernel: Added WaitObject and changed "waitable" objects inherit from it.bunnei
2015-01-09Kernel: Start using boost::intrusive_ptr for lifetime managementYuri Kunde Schlesner
2015-01-09Thread: Reduce use of Handles and move some funcs to inside the class.Yuri Kunde Schlesner
2015-01-04Mutex: Add the calling thread to the waiting list when neededSubv
2014-12-28Kernel: New handle managerYuri Kunde Schlesner
2014-12-28Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsYuri Kunde Schlesner
2014-12-28Rename ObjectPool to HandleTableYuri Kunde Schlesner