Skip to content
Snippets Groups Projects
  1. Oct 21, 2020
  2. Oct 20, 2020
  3. Oct 19, 2020
  4. Oct 18, 2020
  5. Oct 17, 2020
  6. Oct 16, 2020
  7. Oct 15, 2020
  8. Oct 14, 2020
  9. Oct 13, 2020
    • 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
Loading