summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_session.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-31kernel: invert session request handling flowLiam1-2/+1
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.
2021-06-05hle: kernel: Refactor to allocate a ServiceThread per service handler.bunnei1-1/+4
- Previously, we would allocate a thread per session, which adds new threads on CloneCurrentObject. - This results in race conditions with N sessions queuing requests to the same service interface. - Fixes Pokken Tournament DX crashes/softlocks, which were regressed by #6347.
2021-05-29kernel: Add missing override specifiersLioncash1-6/+4
Over the course of the kernel refactoring a tiny bit of missing overrides slipped through review, so we can add these. While we're at it, we can remove redundant virtual keywords where applicable as well.
2021-05-21hle: kernel: Implement CloneCurrentObject and improve session management.bunnei1-0/+4
2021-05-08kernel: Eliminate variable shadowingLioncash1-1/+1
Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
2021-05-06fixup! hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei1-11/+11
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
2021-05-06hle: kernel: Remove deprecated Object class.bunnei1-13/+1
2021-05-06hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei1-1/+1
2021-05-06hle: kernel: Migrate KClientPort to KAutoObject.bunnei1-2/+2
2021-05-06hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei1-0/+108