summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_handle_table.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-12-25kernel: remove unecessary process member from handle tableLiam1-5/+2
2023-12-23general: properly support multiple memory instancesLiam1-3/+5
2023-02-14general: rename CurrentProcess to ApplicationProcessLiam1-1/+2
2023-02-13kernel: use GetCurrentProcessLiam1-1/+1
2022-11-22k_handle_table: Remove cast to void* in GetObjectForIpcLioncash1-15/+1
This was used to get around the KProcess class being incomplete. We can just move this to the cpp file and eliminate the cast entirely, letting the compiler do its work.
2022-11-05core: hle: kernel: Address review comments.Liam1-1/+1
2022-11-04core: hle: kernel: k_handle_table: Refresh.bunnei1-36/+72
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-4/+4
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-18KHandleTable: Optimize table entry layoutMorph1-26/+8
Since the handle type is not being used, we can reduce the amount of space each entry takes up by 4 bytes.
2022-02-02general: Move deleted copy/move constructor/assignment operators to public interfaceLioncash1-2/+1
This allows for better compiler errors, where the compiler will state a copy or move couldn't occur due to the relevant function being deleted. Previously a compiler would warn about the relevant function not being accessible (which, while true, isn't as informative as it could be).
2021-12-07core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei1-0/+2
2021-11-04core: Remove unused includesameerj1-1/+0
2021-08-26Revert "kernel: Various improvements to scheduler"bunnei1-2/+0
2021-08-07core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei1-0/+2
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-1/+1
Transition to PascalCase for result names.
2021-05-06fixup! hle: kernel: Migrate to KHandleTable.bunnei1-0/+3
2021-05-06fixup! hle: kernel: Migrate to KHandleTable.bunnei1-1/+1
2021-05-06fixup! hle: kernel: Migrate to KHandleTable.bunnei1-60/+58
2021-05-06common: Rename NON_COPYABLE/NON_MOVABLE with YUZU_ prefix.bunnei1-2/+2
2021-05-06hle: kernel: Migrate to KHandleTable.bunnei1-0/+309