summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/writable_event.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Kernel: Refactor synchronization to better match REFernando Sahmkow2020-02-111-2/+1
|
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-251-3/+3
| | | | | | * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
* kernel: events: Remove ResetType::Automatic.bunnei2019-11-031-7/+1
| | | | | | | | - This does not actually seem to exist in the real kernel - games reset these automatically. # Conflicts: # src/core/hle/service/am/applets/applets.cpp # src/core/hle/service/filesystem/fsp_srv.cpp
* hle_ipc: Refactor SleepClientThread to avoid ReadableEventZach Hilman2018-11-291-0/+4
|
* kernel/event: Reference ReadableEvent from WritableEventZach Hilman2018-11-291-45/+12
|
* kernel: Divide Event into ReadableEvent and WritableEventZach Hilman2018-11-291-0/+81
More hardware accurate. On the actual system, there is a differentiation between the signaler and signalee, they form a client/server relationship much like ServerPort and ClientPort.