summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* kernel: Move object class to its own source filesGravatar Lioncash2018-08-011-1/+1
* Merge pull request #877 from lioncash/removeGravatar bunnei2018-07-311-1/+0
|\
| * kernel: Remove unused object_address_table.cpp/.hGravatar Lioncash2018-07-311-1/+0
* | kernel: Remove unnecessary includesGravatar Lioncash2018-07-311-0/+4
|/
* mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by referenceGravatar Lioncash2018-07-231-1/+1
* thread: Convert ThreadStatus into an enum classGravatar Lioncash2018-07-191-3/+3
* Kernel/Arbiters: Add stubs for 4.x SignalToAddress/WaitForAddres SVCs.Gravatar Michael Scire2018-06-211-2/+2
* Mutex: Do not assert when the mutex waiting threads list isn't empty on mutex...Gravatar Subv2018-05-201-1/+0
* Kernel: Implemented mutex priority inheritance.Gravatar Subv2018-04-231-8/+31
* Kernel: Remove old and unused Mutex code.Gravatar Subv2018-04-201-120/+0
* Kernel: Corrected the implementation of svcArbitrateLock and svcArbitrateUnlock.Gravatar Subv2018-04-201-0/+94
* mutex: Update hasWaiters on release.Gravatar bunnei2018-02-051-0/+1
* mutex: Remove unused call to VerifyGuestState.Gravatar bunnei2018-01-081-3/+0
* Kernel: Properly keep track of mutex lock data in the guest memory. This fixe...Gravatar Subv2018-01-081-54/+43
* svc: Implement svcLockMutex.Gravatar bunnei2018-01-011-18/+63
* Merge remote-tracking branch 'upstream/master' into nxGravatar bunnei2017-10-091-2/+3
|\
| * Fixed type conversion ambiguityGravatar Huw Pascoe2017-09-301-1/+1
|/
* 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