summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_port.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: kernel: Refactor to allocate a ServiceThread per service handler.bunnei2021-06-051-1/+3
| | | | | | - 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.
* kernel: Add missing override specifiersLioncash2021-05-291-3/+3
| | | | | | | | 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.
* hle: kernel: Implement CloneCurrentObject and improve session management.bunnei2021-05-211-0/+3
|
* kernel: Eliminate variable shadowingLioncash2021-05-081-1/+1
| | | | | Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
* fixup! hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei2021-05-061-1/+1
|
* hle: kernel: Remove deprecated Object class.bunnei2021-05-061-15/+0
|
* hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei2021-05-061-21/+25
|
* hle: kernel: Migrate KServerPort to KAutoObject.bunnei2021-05-061-7/+7
|
* hle: kernel: Migrate KClientPort to KAutoObject.bunnei2021-05-061-0/+72