1. 05 Apr, 2019 8 commits
  2. 04 Apr, 2019 17 commits
  3. 03 Apr, 2019 13 commits
  4. 02 Apr, 2019 2 commits
    • bunnei's avatar
      Merge pull request #2313 from lioncash/reslimit · 57279e19
      bunnei authored
      kernel/resource_limit: Remove the name member from resource limits
      57279e19
    • Lioncash's avatar
      kernel/svc: Implement svcGetThreadList · 28719ee3
      Lioncash authored
      Similarly like svcGetProcessList, this retrieves the list of threads
      from the current process. In the kernel itself, a process instance
      maintains a list of threads, which are used within this function.
      
      Threads are registered to a process' thread list at thread
      initialization, and unregistered from the list upon thread destruction
      (if said thread has a non-null owning process).
      
      We assert on the debug event case, as we currently don't implement
      kernel debug objects.
      28719ee3