1. 01 Jan, 2021 4 commits
  2. 31 Dec, 2020 5 commits
  3. 30 Dec, 2020 27 commits
  4. 29 Dec, 2020 4 commits
    • bunnei's avatar
      hle: kernel: Manage host thread IDs using TLS. · c192da3f
      bunnei authored
      - Avoids the need to have a large map of host to guest thread IDs.
      c192da3f
    • LC's avatar
      Merge pull request #5248 from ReinUsesLisp/update-dynarmic · 8d55c8c8
      LC authored
      externals: Update Dynarmic
      8d55c8c8
    • ReinUsesLisp's avatar
      externals: Update Dynarmic · 3f048c86
      ReinUsesLisp authored
      Keeps yuzu up to date with the latest changes and introduces a change
      needed for a lock-free optimization our side.
      3f048c86
    • comex's avatar
      k_priority_queue: Fix concepts use · 388cf58b
      comex authored
      - For `std::same_as`, add missing include of `<concepts>`.
      
      - For `std::convertible_to`, create a replacement in `common/concepts.h`
        and use that instead.
      
        This would also be found in `<concepts>`, but unlike `std::same_as`,
        `std::convertible_to` is not yet implemented in libc++, LLVM's STL
        implementation - not even in master.  (In fact, `std::same_as` is the
        *only* concept currently implemented.  For some reason.)
      388cf58b