Skip to content
Snippets Groups Projects
  1. Jul 24, 2018
  2. Apr 20, 2018
  3. Jan 20, 2018
  4. Jan 13, 2018
  5. Dec 29, 2017
  6. Oct 31, 2017
  7. Oct 19, 2017
  8. Oct 15, 2017
  9. Jun 08, 2017
    • Yuri Kunde Schlesner's avatar
      Service: Add new ServiceFramework framework for writing HLE services · 84c49729
      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.
      84c49729
  10. Jun 06, 2017
  11. May 30, 2017
  12. Dec 26, 2016
  13. Dec 14, 2016
  14. Dec 09, 2016
  15. Dec 08, 2016
  16. Dec 05, 2016
  17. Dec 01, 2016
    • Subv's avatar
      Fixed the rebase mistakes. · 2eceee3a
      Subv authored
      2eceee3a
    • Subv's avatar
      A bit of a redesign. · 009b15b3
      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.
      009b15b3
    • Subv's avatar
      IPC/HLE: Associate the ClientSessions with their parent port's HLE interface if it exists. · c5e7e0fa
      Subv authored
      Pass the triggering ServerSession to the HLE command handler to differentiate which session caused the request.
      c5e7e0fa
    • Subv's avatar
      Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and... · c19afd21
      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.
      c19afd21
    • Subv's avatar
      fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block... · 0a33d915
      Subv authored
      fixup!  Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
      0a33d915
    • Subv's avatar
      Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter... · 073653e8
      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.
      073653e8
  18. Nov 30, 2016
  19. Sep 21, 2016
  20. Sep 18, 2016
  21. Jun 27, 2015
  22. May 07, 2015
  23. Apr 14, 2015
  24. Mar 04, 2015
    • Subv's avatar
      Services: Moved the PTM and APT services to their own folder · 83a8975c
      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.
      83a8975c
  25. Feb 02, 2015
  26. Jan 10, 2015
  27. Jan 07, 2015
Loading