summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_server_session.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* k_server_session: add SendReplyHLELiam2022-10-311-0/+4
|
* kernel: invert session request handling flowLiam2022-10-311-32/+5
|
* k_server_session: fix crashesLiam2022-10-301-1/+1
|
* kernel: remove most SessionRequestManager handling from KServerSessionLiam2022-10-191-33/+0
|
* kernel: add KSessionRequestLiam2022-10-191-4/+4
|
* k_server_session: preliminary support for userspace server sessionsLiam2022-10-121-15/+22
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-6/+6
|
* 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.
* core: Remove unused includesameerj2021-11-041-3/+0
|
* hle: kernel: KServerSession: Fix client disconnected.bunnei2021-06-101-6/+5
| | | | | - Prevents a cloned session's handler from being overwritten by another disconnected session. - Fixes session handler nullptr asserts with Pokemon Sword & Shield.
* hle: kernel: KAutoObjectWithListContainer: Use boost::instrusive::rbtree.bunnei2021-06-071-1/+1
| | | | - Fixes some crashes introduced by our common intrusive red/black tree impl.
* hle: kernel: Refactor to allocate a ServiceThread per service handler.bunnei2021-06-051-14/+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-14/+22
|
* 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 KSession, KClientSession, and KServerSession to KAutoObject.bunnei2021-05-061-2/+2
|
* hle: kernel: Remove deprecated Object class.bunnei2021-05-061-18/+0
|
* hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei2021-05-061-1/+4
|
* hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei2021-05-061-0/+148