1. 21 Oct, 2020 6 commits
  2. 20 Oct, 2020 10 commits
  3. 19 Oct, 2020 3 commits
  4. 18 Oct, 2020 4 commits
  5. 17 Oct, 2020 5 commits
  6. 16 Oct, 2020 5 commits
  7. 15 Oct, 2020 4 commits
  8. 14 Oct, 2020 1 commit
  9. 13 Oct, 2020 2 commits
    • bunnei's avatar
      Merge pull request #4787 from lioncash/conversion · ca416a0f
      bunnei authored
      audio_core/CMakeLists: Make warnings consistent with core
      ca416a0f
    • ReinUsesLisp's avatar
      kernel: Implement host thread register methods without locking · b9a9b83b
      ReinUsesLisp authored
      Locks on GetCurrentHostThreadID were causing performance issues
      according to Visual Studio's profiler. It was consuming twice the time
      as arm_interface.Run(). The cost was not in the function itself but in
      the lockinig it required.
      
      Reimplement these functions using atomics and static storage instead of
      an unordered_map. This is a side effect to avoid locking and using linked
      lists for reads.
      
      Replace unordered_map with a linear search.
      b9a9b83b