summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_address_arbiter.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-29kernel: fix unbounded stack usage in atomicsLiam1-28/+40
2023-03-24memory: rename global memory references to application memoryLiam1-5/+5
2023-03-22kernel: use KTypedAddress for addressesLiam1-13/+19
2023-03-13kernel: prefer std::addressofLiam1-6/+6
2023-03-13kernel: convert GlobalSchedulerContext, KAddressArbiter, KScopedSchedulerLockAndSleep, KThreadQueue to new styleLiam1-60/+51
2023-03-08kernel: add timer pointer to KThreadQueueLiam1-2/+6
2023-03-01kernel: document previous location of interrupt disables in arbiter/condvarLiam1-2/+6
2022-12-19kernel: remove TimeManagerLiam1-1/+0
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-7/+6
2022-06-23kernel: make current thread pointer thread localLiam1-2/+2
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-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.
2022-03-15core: hle: kernel: k_address_arbiter: Update to reflect tree changes.bunnei1-3/+3
2022-02-27dynarmic: Inline exclusive memory accessesmerry1-2/+2
Inlines implementation of exclusive instructions into JITted code, improving performance of applications relying heavily on these instructions. We also fastmem these instructions for additional speed, with support for appropriate recompilation on fastmem failure. An unsafe optimization to disable the intercore global_monitor is also provided, should one wish to rely solely on cmpxchg semantics for safety. See also: merryhime/dynarmic#664
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