Skip to content
Snippets Groups Projects
  1. Oct 24, 2018
  2. Oct 11, 2018
    • Lioncash's avatar
      svc: Add missing address range sanitizing checks to MapMemory/UnmapMemory · 72e9cb52
      Lioncash authored
      This adds the missing address range checking that the service functions
      do before attempting to map or unmap memory. Given that both service
      functions perform the same set of checks in the same order, we can wrap
      these into a function and just call it from both functions, which
      deduplicates a little bit of code.
      72e9cb52
  3. Sep 30, 2018
    • Lioncash's avatar
      kernel/svc: Implement svcGetThreadContext() · 541c5507
      Lioncash authored
      Now that we have all of the rearranging and proper structure sizes in
      place, it's fairly trivial to implement svcGetThreadContext(). In the
      64-bit case we can more or less just write out the context as is, minus
      some minor value sanitizing. In the 32-bit case we'll need to clear out
      the registers that wouldn't normally be accessible from a 32-bit
      AArch32 exectuable (or process).
      541c5507
  4. Sep 14, 2018
  5. Sep 13, 2018
  6. Sep 12, 2018
  7. Aug 25, 2018
  8. Jun 21, 2018
  9. May 31, 2018
  10. Apr 21, 2018
    • Subv's avatar
      Kernel: Corrected the implementation of svcArbitrateLock and svcArbitrateUnlock. · e81a2080
      Subv authored
      Switch mutexes are no longer kernel objects, they are managed in userland and only use the kernel to handle the contention case.
      Mutex addresses store a special flag value (0x40000000) to notify the guest code that there are still some threads waiting for the mutex to be released. This flag is updated when a thread calls ArbitrateUnlock.
      
      TODO:
      * Fix svcWaitProcessWideKey
      * Fix svcSignalProcessWideKey
      * Remove the Mutex class.
      e81a2080
  11. Jan 13, 2018
  12. Jan 09, 2018
  13. Dec 31, 2017
  14. Oct 31, 2017
  15. Jun 23, 2017
  16. May 25, 2017
Loading