summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_handle_table.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: rename CurrentProcess to ApplicationProcessLiam2023-02-141-1/+2
|
* kernel: use GetCurrentProcessLiam2023-02-131-1/+1
|
* k_handle_table: Remove cast to void* in GetObjectForIpcLioncash2022-11-221-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.
* core: hle: kernel: Address review comments.Liam2022-11-051-1/+1
|
* core: hle: kernel: k_handle_table: Refresh.bunnei2022-11-041-36/+72
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-4/+4
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-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.
* KHandleTable: Optimize table entry layoutMorph2022-03-181-26/+8
| | | | Since the handle type is not being used, we can reduce the amount of space each entry takes up by 4 bytes.
* general: Move deleted copy/move constructor/assignment operators to public interfaceLioncash2022-02-021-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).
* core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei2021-12-071-0/+2
|
* core: Remove unused includesameerj2021-11-041-1/+0
|
* Revert "kernel: Various improvements to scheduler"bunnei2021-08-261-2/+0
|
* core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei2021-08-071-0/+2
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-1/+1
| | | | Transition to PascalCase for result names.
* fixup! hle: kernel: Migrate to KHandleTable.bunnei2021-05-061-0/+3
|
* fixup! hle: kernel: Migrate to KHandleTable.bunnei2021-05-061-1/+1
|
* fixup! hle: kernel: Migrate to KHandleTable.bunnei2021-05-061-60/+58
|
* common: Rename NON_COPYABLE/NON_MOVABLE with YUZU_ prefix.bunnei2021-05-061-2/+2
|
* hle: kernel: Migrate to KHandleTable.bunnei2021-05-061-0/+309