summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Format: Run the new clang format on everythingJames Rowe2018-01-211-1/+1
* Kernel/SVC: Pass the current thread as a parameter to ClientSession::SendSyncRequest.Subv2017-06-291-2/+3
* Kernel/Sessions: Clean up the list of pending request threads of a session when the client endpoint is closed.Subv2017-06-261-0/+5
* Kernel/ServerSession: Keep track of which threads have issued sync requests.Subv2017-06-251-1/+1
* Session: Remove/add some forward declarationsYuri Kunde Schlesner2017-06-081-0/+1
* Kernel: Ensure objects are kept alive during ClientSession disconnectionYuri Kunde Schlesner2017-06-081-7/+13
* HLE: Move SessionRequestHandler from Service:: to Kernel::Yuri Kunde Schlesner2017-06-061-0/+2
* Kernel: Centralize error definitions in errors.hYuri Kunde Schlesner2017-05-251-2/+1
* Kernel/Sessions: Remove the ClientSession::Create function.Subv2017-05-221-8/+0
* Kernel: Remove a now unused enum and variable regarding a session's status.Subv2017-05-151-1/+0
* Kernel: Use a Session object to keep track of the status of a Client/Server session pair.Subv2017-05-151-9/+15
* Fixed the codestyle to match our clang-format rules.Subv2016-12-141-3/+6
* Added a framework for partially handling Session disconnections.Subv2016-12-081-3/+12
* Use std::move where appropriate.Subv2016-12-081-1/+1
* KServerPorts now have an HLE handler "template", which is inherited by all ServerSessions created from it.Subv2016-12-051-1/+1
* Declare empty ServerSession and ClientSession constructors as default.Subv2016-12-031-2/+2
* Fixed the rebase mistakes.Subv2016-12-011-3/+0
* A bit of a redesign.Subv2016-12-011-14/+2
* IPC/HLE: Associate the ClientSessions with their parent port's HLE interface if it exists.Subv2016-12-011-4/+5
* Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.Subv2016-12-011-0/+42