summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_address_arbiter.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-07hle: kernel: Remove unnecessary virtual specifier on CancelWait.bunnei1-2/+2
2021-12-07hle: kernel: Cleanup to match coding style.bunnei1-3/+3
2021-12-07hle: kernel: KAddressArbiter: Migrate to updated KThreadQueue.bunnei1-43/+39
2021-12-07hle: kernel: KThread: Remove tracking of sync object from threads.bunnei1-9/+7
2021-12-07core: hle: kernel: Reflect non-emulated threads as core 3.bunnei1-2/+2
2021-08-26Revert "kernel: Various improvements to scheduler"bunnei1-2/+2
2021-08-07core: hle: kernel: Reflect non-emulated threads as core 3.bunnei1-2/+2
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-6/+6
Transition to PascalCase for result names.
2021-02-13kernel: Unify result codes (#5890)Chloe1-14/+14
* 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
2021-02-06k_address_arbiter: Unfold R_UNLESS macrosLioncash1-5/+8
Allows for more descriptive error messages and also doesn't hide control-path exit returns from the reader.
2021-02-06k_address_arbiter: Remove unnecessary usages of std::addressofLioncash1-10/+10
This is a useful function in a generic context or with types that overload unary operator&. However, primitives and pointers will never do this, so we can opt for a more straightforward syntax.
2021-02-06k_address_arbiter: Remove dead codeLioncash1-40/+13
This code is never used, so we can remove it. It's in version control, so it can always be brought back when needed.
2021-02-05hle: kernel: Drop R_UNLESS_NOLOG in favor of expanded if-statement.bunnei1-2/+8
2021-02-05hle: kernel: KAddressArbiter: Remove noisy error log.bunnei1-1/+1
2021-02-05hle: kernel: KAddressArbiter: Use R_UNLESS_NOLOG where applicable.bunnei1-1/+1
2021-01-29hle: kernel: TimeManager: Simplify to not rely on previous EmuThreadHandle implementation.bunnei1-12/+4
2021-01-29core: hle: kernel: Rename Thread to KThread.bunnei1-6/+6
2021-01-11hle: kernel: thread: Preserve thread wait reason for debugging only.bunnei1-0/+2
- This is decoupled from core functionality and used for debugging only.
2021-01-11core: hle: kernel: Update KAddressArbiter.bunnei1-0/+365