aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
AgeCommit message (Collapse)Author
2023-02-14remove static from pointer sized or smaller types for aesthetics, change ↵arades79
constexpr static to static constexpr for consistency Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14apply clang-formatarades79
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation ↵arades79
where possible Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-11kernel/svc: Fix undefined info_idColin Kinloch
2023-02-11Merge pull request #9773 from bunnei/fix-process-resourceliamwhite
core: kernel: k_process: Use application system resource.
2023-02-10Merge pull request #9742 from liamwhite/svc-wrap-onlybunnei
kernel/svc: switch to generated wrappers
2023-02-10core: kernel: k_process: Use application system resource.bunnei
2023-02-10kernel: avoid usage of bit_castLiam
2023-02-06kernel/svc: switch to generated wrappersLiam
2023-02-06kernel: fix compilation with older gccLiam
2023-02-04kernel/svc: Split implementations into separate filesLiam
2023-02-03Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj
This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing changes made to af20e25081f97d55b451606c87922e2b49f0d363.
2023-02-02Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-spanbunnei
Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"
2023-02-02Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ↵liamwhite
ReadBuffer"
2023-02-01kernel: add KDeviceAddressSpaceLiam
2023-01-31Merge pull request #9697 from liamwhite/kcapbunnei
kernel: add KCapabilities
2023-01-30Merge pull request #9508 from ameerj/hle-ipc-buffer-spanbunnei
hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer
2023-01-29kernel: add KCapabilitiesLiam
2023-01-29Move to Clang Format 15Levi Behunin
Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run
2023-01-27Merge pull request #9666 from liamwhite/wait-for-mebunnei
kernel: fix incorrect locking order in suspension
2023-01-26kernel: unbreak min/max template deduction on Apple ClangLiam
2023-01-23kernel: split SetAddressKey into user and kernel variantsLiam
2023-01-23kernel: fix incorrect locking order in suspensionLiam
2023-01-22kernel: KPageTable: updateLiam
2023-01-14timing: wait for completion on unregisterLiam
2023-01-07Revert "Revert "k_page_group: synchronize""bunnei
2022-12-29Revert "k_page_group: synchronize"gidoly
2022-12-28hle_ipc: Use thread_local ReadBufferameerj
2022-12-28hle_ipc: Rename ReadBufferSpan to ReadBufferameerj
2022-12-28hle_ipc: Rename ReadBuffer to ReadBufferCopyameerj
Indicates explicitly that a copy is occurring
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj
2022-12-25k_page_table: remove HACK_OpenPages/ClosePagesLiam
2022-12-25hle_ipc: Add ReadBufferSpan functionameerj
Returns a std::span to the buffer address, rather than create a copy of the memory into a std::vector
2022-12-25k_page_group: synchronizeLiam
2022-12-23kernel: workaround static shared memory initializationLiam
2022-12-18kernel: remove TimeManagerLiam
2022-12-18kernel: add KHardwareTimerLiam
2022-12-17Merge pull request #9452 from ameerj/hle-read-buffer-resreveliamwhite
hle_ipc: Refactor ReadBuffer to set buffer size upon initialization
2022-12-16Merge pull request #9450 from ameerj/hle-ipc-vector-reserveliamwhite
hle_ipc: Reserve vectors before populating
2022-12-15hle_ipc: Refactor ReadBuffer to set buffer size upon initializationameerj
Initializing the vector size during initialization is more efficient than a later call to resize()
2022-12-15hle_ipc: Reserve vectors before populatingameerj
2022-12-15kernel: svc: Fix duplicated InfoType enumNarr the Reg
2022-12-15kernel: process: Implement GetFreeThreadCountNarr the Reg
Used by Just Dance® 2023 Edition
2022-12-12Merge pull request #9398 from liamwhite/failbunnei
general: improve handling of system startup failure
2022-12-09Remove the lock entirely as per PR discussionSalvage
Correctly unlock mutex before its destruction As per https://en.cppreference.com/w/cpp/thread/mutex/~mutex destroying a locked mutex is undefined behavior and MSVC++ decides to throw in this case Swap out unique for scoped lock and readd comment
2022-12-06general: improve handling of system startup failureLiam
2022-12-05kernel/k_shared_memory: Ensure device_memory is always initializedLioncash
2022-12-05kernel/k_memory_block: Ensure members are always initializedLioncash
2022-12-05kernel/physical_core: Ensure is_interrupted is always initializedLioncash
2022-12-05kernel/thread: Ensure stack_top and argument are always initializedLioncash