summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_handle_table.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-11-22k_handle_table: Remove cast to void* in GetObjectForIpcLioncash1-0/+17
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-04core: hle: kernel: k_handle_table: Refresh.bunnei1-18/+15
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-3/+3
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-4/+4
Since the handle type is not being used, we can reduce the amount of space each entry takes up by 4 bytes.
2021-12-07core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei1-0/+6
2021-10-27Fix memory leakFeng Chen1-0/+1
2021-09-29style: Remove extra space preceding the :: operatorMorph1-1/+1
2021-08-26Revert "kernel: Various improvements to scheduler"bunnei1-6/+0
2021-08-07core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei1-0/+6
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-3/+3
Transition to PascalCase for result names.
2021-05-06hle: kernel: Migrate to KHandleTable.bunnei1-0/+135