index
:
yuzu-mainline
master
A backup of the Yuzu mainline repo. Only includes the master branch, nothing else.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
semaphore.cpp
Age
Commit message (
Expand
)
Author
2018-01-08
kernel: Rename Semaphore to ConditionVariable.
bunnei
2018-01-08
Kernel: Actually wake up the requested number of threads in Semaphore::Release.
Subv
2018-01-07
semaphore: More changes for Switch.
bunnei
2018-01-06
semaphore: Updates for Switch.
bunnei
2017-10-09
Merge remote-tracking branch 'upstream/master' into nx
bunnei
2017-05-24
Kernel: Centralize error definitions in errors.h
Yuri Kunde Schlesner
2017-01-05
Kernel/Semaphore: Fixed a regression in semaphore waits.
Subv
2017-01-04
Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.
Subv
2016-09-21
Use negative priorities to avoid special-casing the self-include
Yuri Kunde Schlesner
2016-09-21
Remove empty newlines in #include blocks.
Emmanuel Gil Peyrot
2016-09-18
Manually tweak source formatting and then re-run clang-format
Yuri Kunde Schlesner
2016-09-18
Sources: Run clang-format on everything.
Emmanuel Gil Peyrot
2015-06-16
kernel: Fix svcWaitSynch to always acquire requested wait objects.
bunnei
2015-05-29
Remove every trailing whitespace from the project (but externals).
Emmanuel Gil Peyrot
2015-05-20
Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.
bunnei
2015-05-07
Common: Remove common.h
Yuri Kunde Schlesner
2015-02-10
Asserts: break/crash program, fit to style guide; log.h->assert.h
archshift
2015-02-02
Kernel: Stop creating useless Handles during object creation
Yuri Kunde Schlesner
2015-02-02
Explicitly instantiate constructors/destructors for Kernel objects
Yuri Kunde Schlesner
2015-01-30
Kernel: Convert Semaphore to not use Handles
Yuri Kunde Schlesner
2015-01-21
Kernel: Renamed some functions for clarity.
bunnei
2015-01-21
Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.
bunnei
2015-01-21
WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...
bunnei
2015-01-21
Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.
bunnei
2015-01-21
WaitSynchronizationN: Refactor to fix several bugs
bunnei
2015-01-21
Kernel: Separate WaitSynchronization into Wait and Acquire methods.
bunnei
2015-01-21
WaitSynchronizationN: Implement return values
bunnei
2015-01-21
Kernel: Added WaitObject and changed "waitable" objects inherit from it.
bunnei
2015-01-09
Kernel: Start using boost::intrusive_ptr for lifetime management
Yuri Kunde Schlesner
2015-01-09
Thread: Reduce use of Handles and move some funcs to inside the class.
Yuri Kunde Schlesner
2014-12-28
Kernel: New handle manager
Yuri Kunde Schlesner
2014-12-28
Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants
Yuri Kunde Schlesner
2014-12-28
Rename ObjectPool to HandleTable
Yuri Kunde Schlesner
2014-12-21
Merge pull request #291 from purpasmart96/license
bunnei
2014-12-20
License change
purpasmart96
2014-12-20
Clean up some warnings
Chin
2014-12-13
Kernel/Semaphore: Small style change
Subv
2014-12-13
Kernel/Semaphores: Invert the available count checking.
Subv
2014-12-13
Kernel/Semaphores: Addressed some issues.
Subv
2014-12-13
Semaphore: Removed an unneeded function
Subv
2014-12-13
Semaphores: Addressed some style issues
Subv
2014-12-13
Semaphore: Implemented the initial_count parameter.
Subv
2014-12-13
SVC: Implemented ReleaseSemaphore.
Subv
2014-12-13
SVC: Implemented svcCreateSemaphore
Subv