summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_synchronization_object.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove memory allocations in some hot pathsKelebek12023-06-221-1/+2
|
* kernel: remove kernel_Liam2023-03-131-6/+5
|
* kernel: convert miscellaneousLiam2023-03-131-12/+12
|
* kernel: add timer pointer to KThreadQueueLiam2023-03-081-1/+3
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-7/+6
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* hle: kernel: Remove unnecessary virtual specifier on NotifyAvailable.bunnei2021-12-071-2/+2
|
* hle: kernel: Remove unnecessary virtual specifier on CancelWait.bunnei2021-12-071-2/+2
|
* hle: kernel: Cleanup to match coding style.bunnei2021-12-071-11/+7
|
* hle: kernel: Update KThreadQueue and migrate KSynchronizationObject.bunnei2021-12-071-73/+82
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-2/+2
| | | | Transition to PascalCase for result names.
* kernel: Eliminate variable shadowingLioncash2021-05-081-6/+7
| | | | | Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
* hle: kernel: Migrate more of KThread to KAutoObject.bunnei2021-05-061-4/+6
|
* kernel: Unify result codes (#5890)Chloe2021-02-131-4/+4
| | | | | | | | | * kernel: Unify result codes Drop the usage of ERR_NAME convention in kernel for ResultName. Removed seperation between svc_results.h & errors.h as we mainly include both most of the time anyways. * oops * rename errors to svc_results
* hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei2021-02-051-0/+3
|
* hle: kernel: TimeManager: Simplify to not rely on previous EmuThreadHandle implementation.bunnei2021-01-291-6/+2
|
* core: hle: kernel: object: Implement Finalize() virtual method.bunnei2021-01-291-1/+1
|
* core: hle: kernel: Rename Thread to KThread.bunnei2021-01-291-5/+5
|
* hle: kernel: thread: Preserve thread wait reason for debugging only.bunnei2021-01-111-0/+1
| | | | - This is decoupled from core functionality and used for debugging only.
* core: hle: Integrate new KConditionVariable and KAddressArbiter implementations.bunnei2021-01-111-2/+2
|
* hle: kernel: thread: Replace ThreadStatus/ThreadSchedStatus with a single ThreadState.bunnei2021-01-111-3/+3
| | | | - This is how the real kernel works, and is more accurate and simpler.
* core: hle: kernel: Update KSynchronizationObject.bunnei2021-01-111-0/+171