summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_port.h (unfollow)
Commit message (Expand)AuthorFilesLines
2023-12-07kernel: implement light IPCLiam1-0/+2
2023-03-13kernel: convert KPort, KSessionLiam1-12/+11
2023-03-01service: move hle_ipc from kernelLiam1-1/+0
2022-10-31kernel: invert session request handling flowLiam1-2/+1
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda1-3/+2
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-2/+2
2021-06-05hle: kernel: Refactor to allocate a ServiceThread per service handler.bunnei1-1/+3
2021-05-29kernel: Add missing override specifiersLioncash1-3/+3
2021-05-21hle: kernel: Implement CloneCurrentObject and improve session management.bunnei1-0/+3
2021-05-08kernel: Eliminate variable shadowingLioncash1-1/+1
2021-05-06fixup! hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei1-1/+1
2021-05-06hle: kernel: Remove deprecated Object class.bunnei1-15/+0
2021-05-06hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei1-21/+25
2021-05-06hle: kernel: Migrate KServerPort to KAutoObject.bunnei1-7/+7
2021-05-06hle: kernel: Migrate KClientPort to KAutoObject.bunnei1-18/+27
2021-05-06hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei1-2/+2
2021-01-29core: hle: kernel: object: Implement Finalize() virtual method.bunnei1-0/+2
2019-12-08kernel: Remove unnecessary includesLioncash1-0/+2
2019-11-25kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei1-6/+6
2019-04-11kernel: Make handle type declarations constexprLioncash1-1/+1
2018-10-06Added forward define for ServerPortDavid Marcec1-4/+2
2018-10-06Ported #4296 from citraDavid Marcec1-1/+5
2018-08-29kernel: Eliminate kernel global stateLioncash1-2/+3
2018-08-07client_port: Make all data members privateLioncash1-4/+10
2018-08-02kernel: Move object class to its own source filesLioncash1-1/+1
2018-01-21Format: Run the new clang format on everythingJames Rowe1-1/+1
2017-05-30Kernel: Move HandleTable to a separate fileYuri Kunde Schlesner1-0/+1
2016-12-14Fixed the codestyle to match our clang-format rules.Subv1-2/+3
2016-12-05Return an error code when connecting to a saturated port.Subv1-2/+2
2016-12-05KServerPorts now have an HLE handler "template", which is inherited by all ServerSessions created from it.Subv1-4/+6
2016-12-01Fixed the rebase mistakes.Subv1-17/+15
2016-12-01A bit of a redesign.Subv1-11/+1
2016-12-01IPC/HLE: Associate the ClientSessions with their parent port's HLE interface if it exists.Subv1-9/+3
2016-12-01Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and is now its own standalone class.Subv1-8/+21
2016-12-01 Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.Subv1-6/+17
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-2/+0
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-8/+14
2016-06-11Kernel/SVC: Implemented svcCreatePort.Subv1-0/+2
2016-06-05Kernel: Added ClientPort and ServerPort classes.Subv1-0/+34