- Jul 24, 2018
-
-
Lioncash authored
Avoids unwanted implicit conversions. Thankfully, given the large amount of cleanup in past PRs, only this tiny amount is left over to cover.
-
- Apr 20, 2018
-
-
Lioncash authored
Converts the service manager from a global into an instance-based variable.
-
- Jan 20, 2018
-
-
James Rowe authored
-
- Jan 13, 2018
-
-
bunnei authored
-
- Dec 29, 2017
-
-
bunnei authored
-
- Oct 31, 2017
-
-
bunnei authored
-
- Oct 19, 2017
-
-
bunnei authored
-
- Oct 15, 2017
-
-
bunnei authored
-
- Jun 08, 2017
-
-
Yuri Kunde Schlesner authored
The old "Interface" class had a few problems such as using free functions (Which didn't allow you to write the service handler as if it were a regular class.) which weren't very extensible. (Only received one parameter with a pointer to the Interface object.) The new ServiceFramework aims to solve these problems by working with member functions and passing a generic context struct as parameter. This struct can be extended in the future without having to update all existing service implementations.
-
- Jun 06, 2017
-
-
Yuri Kunde Schlesner authored
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
-
Yuri Kunde Schlesner authored
Also enhances the GetServiceHandle implementation to be more accurate.
-
Yuri Kunde Schlesner authored
Most of the code that works with this is or will be in the kernel, so it's a more appropriate place for it to be.
-
- May 30, 2017
-
-
Yuri Kunde Schlesner authored
-
- Dec 26, 2016
-
-
Lectem authored
-
- Dec 14, 2016
-
-
Subv authored
-
- Dec 09, 2016
-
-
Subv authored
Moved the HLE command buffer translation task to ServerSession instead of the HLE handler superclass.
-
- Dec 08, 2016
- Dec 05, 2016
-
-
Subv authored
HLE: Use a member variable instead of a virtual function to retrieve the max number of sessions that can be connected to an HLE service at the same time.
-
Subv authored
Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, TranslateRequest and HandleSyncRequestImpl. HandleSyncRequest now takes care of calling the command buffer translate function before actually invoking the command handler for HLE services.
-
Subv authored
KServerPorts now have an HLE handler "template", which is inherited by all ServerSessions created from it.
-
- Dec 01, 2016
-
-
Subv authored
-
Subv authored
Sessions and Ports are now detached from each other. HLE services are handled by means of a SessionRequestHandler class, Interface now inherits from this class. The File and Directory classes are no longer kernel objects, but SessionRequestHandlers instead, bound to a ServerSession when requested. File::OpenLinkFile now creates a new session pair and binds the File instance to it.
-
Subv authored
Pass the triggering ServerSession to the HLE command handler to differentiate which session caused the request.
-
Subv authored
Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and is now its own standalone class. Interface is now used by aggregation in ClientPort, to forward service commands to their HLE implementation if needed.
-
Subv authored
fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
-
Subv authored
Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication. All handles obtained via srv::GetServiceHandle or svcConnectToPort are references to ClientSessions. Service modules will wait on the counterpart of those ClientSessions (Called ServerSessions) using svcReplyAndReceive or svcWaitSynchronization[1|N], and will be awoken when a SyncRequest is performed. HLE Interfaces are now ClientPorts which override the HandleSyncRequest virtual member function to perform command handling immediately.
-
- Nov 30, 2016
-
-
mailwl authored
-
- Sep 21, 2016
-
-
Emmanuel Gil Peyrot authored
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
-
- Sep 18, 2016
-
-
Emmanuel Gil Peyrot authored
-
- Jun 27, 2015
-
-
Emmanuel Gil Peyrot authored
-
Emmanuel Gil Peyrot authored
-
- May 07, 2015
-
-
Yuri Kunde Schlesner authored
-
- Apr 14, 2015
-
-
Yuri Kunde Schlesner authored
This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
-
- Mar 04, 2015
-
-
Subv authored
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
-
- Feb 02, 2015
-
-
Yuri Kunde Schlesner authored
Uses less memory (strings and function table is stored in constant data) and speeds up start up (no need to allocate and copy strings).
-
Yuri Kunde Schlesner authored
-
Yuri Kunde Schlesner authored
-
- Jan 10, 2015
-
-
archshift authored
Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance.
-
- Jan 07, 2015
-
-
Yuri Kunde Schlesner authored
Fixes #423.
-