summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_port.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: kernel: KClientPort: Add an assert for session count.bunnei2021-06-101-0/+3
| | | | - Prevents us from over decrementing num_sessions.
* hle: service: sm: Fix GetService setup of session & port.bunnei2021-06-101-1/+1
|
* hle: kernel: KAutoObjectWithListContainer: Use boost::instrusive::rbtree.bunnei2021-06-071-2/+2
| | | | - 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-2/+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.
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-1/+1
| | | | Transition to PascalCase for result names.
* Revert "WORKAROUND: temp. disable session resource limits while we work out issues"bunnei2021-05-211-4/+4
| | | | This reverts commit fc086f93b2165b5c210cb7dcd6c18ebe17f1fd7b.
* WORKAROUND: temp. disable session resource limits while we work out issuesbunnei2021-05-111-4/+4
|
* hle: kernel: KClientPort: Cleanup comment format.bunnei2021-05-111-1/+1
|
* kernel: Eliminate variable shadowingLioncash2021-05-081-1/+1
| | | | | Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
* hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei2021-05-061-26/+93
|
* hle: kernel: Migrate KServerPort to KAutoObject.bunnei2021-05-061-2/+2
|
* hle: kernel: Migrate KClientPort to KAutoObject.bunnei2021-05-061-0/+58