summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/semaphore.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Kernel: Centralize error definitions in errors.hYuri Kunde Schlesner2017-05-251-4/+3
* Kernel/Semaphore: Fixed a regression in semaphore waits.Subv2017-01-051-1/+2
* Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv2017-01-041-3/+3
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-2/+1
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-4/+2
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-3/+5
* kernel: Fix svcWaitSynch to always acquire requested wait objects.bunnei2015-06-171-7/+1
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-1/+1
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.bunnei2015-05-211-0/+2
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-1/+1
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-1/+1
* Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner2015-02-021-2/+0
* Explicitly instantiate constructors/destructors for Kernel objectsYuri Kunde Schlesner2015-02-021-0/+3
* Kernel: Convert Semaphore to not use HandlesYuri Kunde Schlesner2015-01-301-43/+22
* Kernel: Renamed some functions for clarity.bunnei2015-01-221-1/+1
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.bunnei2015-01-221-21/+7
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual.bunnei2015-01-221-1/+1
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.bunnei2015-01-221-9/+2
* WaitSynchronizationN: Refactor to fix several bugsbunnei2015-01-221-3/+3
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.bunnei2015-01-221-3/+12
* WaitSynchronizationN: Implement return valuesbunnei2015-01-221-3/+3
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.bunnei2015-01-221-8/+3
* Kernel: Start using boost::intrusive_ptr for lifetime managementYuri Kunde Schlesner2015-01-091-2/+2
* Thread: Reduce use of Handles and move some funcs to inside the class.Yuri Kunde Schlesner2015-01-091-3/+5
* Kernel: New handle managerYuri Kunde Schlesner2014-12-281-1/+2
* Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsYuri Kunde Schlesner2014-12-281-2/+2
* Rename ObjectPool to HandleTableYuri Kunde Schlesner2014-12-281-2/+2
* Merge pull request #291 from purpasmart96/licensebunnei2014-12-211-1/+1
|\
| * License changepurpasmart962014-12-211-1/+1
* | Clean up some warningsChin2014-12-201-4/+4
|/
* Kernel/Semaphore: Small style changeSubv2014-12-131-1/+1
* Kernel/Semaphores: Invert the available count checking.Subv2014-12-131-11/+9
* Kernel/Semaphores: Addressed some issues.Subv2014-12-131-28/+13
* Semaphore: Removed an unneeded functionSubv2014-12-131-5/+0
* Semaphores: Addressed some style issuesSubv2014-12-131-6/+5
* Semaphore: Implemented the initial_count parameter.Subv2014-12-131-3/+5
* SVC: Implemented ReleaseSemaphore.Subv2014-12-131-13/+52
* SVC: Implemented svcCreateSemaphoreSubv2014-12-131-0/+76