index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
event.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
svc: Make ResetType an enum class
Lioncash
2016-03-12
1
-1
/
+1
*
Kernel: Remove unused member from Event
Yuri Kunde Schlesner
2015-07-12
1
-1
/
+1
*
kernel: Fix svcWaitSynch to always acquire requested wait objects.
bunnei
2015-06-17
1
-3
/
+0
*
Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.
bunnei
2015-05-21
1
-0
/
+3
*
Common: Remove common.h
Yuri Kunde Schlesner
2015-05-07
1
-1
/
+1
*
Asserts: break/crash program, fit to style guide; log.h->assert.h
archshift
2015-02-11
1
-1
/
+1
*
Kernel: Stop creating useless Handles during object creation
Yuri Kunde Schlesner
2015-02-02
1
-4
/
+2
*
Explicitly instantiate constructors/destructors for Kernel objects
Yuri Kunde Schlesner
2015-02-02
1
-0
/
+3
*
Kernel: Convert Event to not use Handles
Yuri Kunde Schlesner
2015-01-30
1
-62
/
+21
*
Kernel: Remove useless/duplicated comments; mark functions static
Yuri Kunde Schlesner
2015-01-30
1
-1
/
+1
*
Kernel: Renamed some functions for clarity.
bunnei
2015-01-22
1
-1
/
+1
*
Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.
bunnei
2015-01-22
1
-5
/
+5
*
WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual.
bunnei
2015-01-22
1
-1
/
+1
*
Event: Fix implementation of "non-sticky" events.
bunnei
2015-01-22
1
-0
/
+4
*
Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.
bunnei
2015-01-22
1
-7
/
+2
*
WaitSynchronizationN: Refactor to fix several bugs
bunnei
2015-01-22
1
-3
/
+3
*
Kernel: Separate WaitSynchronization into Wait and Acquire methods.
bunnei
2015-01-22
1
-1
/
+5
*
WaitSynchronizationN: Implement return values
bunnei
2015-01-22
1
-2
/
+2
*
Event: Fixed some bugs and cleanup (Subv)
bunnei
2015-01-22
1
-47
/
+11
*
Event: Get rid of permanent_lock hack.
bunnei
2015-01-22
1
-29
/
+8
*
Kernel: Added WaitObject and changed "waitable" objects inherit from it.
bunnei
2015-01-22
1
-19
/
+7
*
Kernel: Start using boost::intrusive_ptr for lifetime management
Yuri Kunde Schlesner
2015-01-09
1
-5
/
+5
*
Thread: Reduce use of Handles and move some funcs to inside the class.
Yuri Kunde Schlesner
2015-01-09
1
-3
/
+5
*
Kernel: New handle manager
Yuri Kunde Schlesner
2014-12-28
1
-1
/
+2
*
Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants
Yuri Kunde Schlesner
2014-12-28
1
-2
/
+2
*
Rename ObjectPool to HandleTable
Yuri Kunde Schlesner
2014-12-28
1
-5
/
+5
*
License change
purpasmart96
2014-12-21
1
-1
/
+1
*
Remove duplicated docs/update them for changed parameters.
Yuri Kunde Schlesner
2014-11-24
1
-5
/
+0
*
HLE: Revamp error handling throrough the HLE code
Yuri Kunde Schlesner
2014-11-24
1
-19
/
+19
*
Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated
Emmanuel Gil Peyrot
2014-11-19
1
-2
/
+2
*
Add `override` keyword through the code.
Yuri Kunde Schlesner
2014-10-26
1
-4
/
+4
*
Core: Alter the kernel string functions to use std::string instead of const char*.
Lioncash
2014-08-18
1
-2
/
+2
*
Kernel: Updated Event and Mutex to specify handle that they are blocking for.
bunnei
2014-08-06
1
-1
/
+1
*
Event: Updated several log messages to be assertions.
bunnei
2014-06-13
1
-16
/
+8
*
Kernel: Updated various kernel function "name" arguments to be const references.
bunnei
2014-06-13
1
-2
/
+2
*
Kernel: Updated several member functions to be const
bunnei
2014-06-13
1
-3
/
+3
*
Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects)
bunnei
2014-06-13
1
-11
/
+0
*
Kernel: Added real support for thread and event blocking
bunnei
2014-06-13
1
-12
/
+59
*
svc: added optional name field to Event and Mutex (used for debugging)
bunnei
2014-06-03
1
-3
/
+8
*
event: added a hackish ability to set an event as "locked" to its current state, cleaned up some comments
bunnei
2014-06-01
1
-4
/
+24
*
event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some comments
bunnei
2014-05-30
1
-7
/
+11
*
event: added SetEventLocked method to change status an events lock
bunnei
2014-05-28
1
-0
/
+11
*
kernel: added event module to support creation of CTR "Event" objects
bunnei
2014-05-28
1
-0
/
+91