Skip to content
Snippets Groups Projects
  1. Oct 15, 2017
  2. Oct 13, 2017
  3. Oct 10, 2017
  4. Sep 16, 2017
  5. Jun 19, 2017
  6. Jun 18, 2017
  7. Jun 11, 2017
  8. Jun 09, 2017
  9. Jun 08, 2017
  10. Jun 06, 2017
  11. Dec 30, 2016
  12. Dec 22, 2016
  13. Dec 14, 2016
  14. Dec 11, 2016
  15. Dec 09, 2016
  16. Dec 08, 2016
  17. Dec 05, 2016
  18. Dec 01, 2016
    • 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
      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
  19. Sep 21, 2016
  20. Sep 18, 2016
Loading