summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_port.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: fix resource limit imbalanceLiam2023-12-231-2/+2
|
* general: properly support multiple memory instancesLiam2023-12-231-2/+1
|
* kernel: implement light IPCLiam2023-12-071-0/+69
|
* kernel: remove kernel_Liam2023-03-131-6/+6
|
* kernel: convert KPort, KSessionLiam2023-03-131-39/+34
|
* service: move hle_ipc from kernelLiam2023-03-011-1/+0
|
* general: rename CurrentProcess to ApplicationProcessLiam2023-02-141-1/+1
|
* kernel: use GetCurrentProcessLiam2023-02-131-0/+1
|
* kernel/svc_types: refreshLiam2022-11-101-1/+1
|
* kernel: invert session request handling flowLiam2022-10-311-3/+2
|
* chore: make yuzu REUSE compliantAndrea Pappacoda2022-07-271-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-2/+2
|
* 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