diff options
| author | bunnei <bunneidev@gmail.com> | 2021-08-25 20:59:28 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-25 20:59:28 -0700 |
| commit | 0c8594b2251cf600afc3a89ecf1114eb3a25f700 (patch) | |
| tree | d6f7d065cd8e2f00c85b9749076ef303a705c864 /src/core/hle/kernel/k_handle_table.h | |
| parent | 3843995ceb3e20c1d32d790f1d81a2a6c3d49c38 (diff) | |
Revert "kernel: Various improvements to scheduler"
Diffstat (limited to 'src/core/hle/kernel/k_handle_table.h')
| -rw-r--r-- | src/core/hle/kernel/k_handle_table.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_handle_table.h b/src/core/hle/kernel/k_handle_table.h index 75dcec7df..2ff6aa160 100644 --- a/src/core/hle/kernel/k_handle_table.h +++ b/src/core/hle/kernel/k_handle_table.h @@ -69,7 +69,6 @@ public: template <typename T = KAutoObject> KScopedAutoObject<T> GetObjectWithoutPseudoHandle(Handle handle) const { // Lock and look up in table. - KScopedDisableDispatch dd(kernel); KScopedSpinLock lk(m_lock); if constexpr (std::is_same_v<T, KAutoObject>) { @@ -124,7 +123,6 @@ public: size_t num_opened; { // Lock the table. - KScopedDisableDispatch dd(kernel); KScopedSpinLock lk(m_lock); for (num_opened = 0; num_opened < num_handles; num_opened++) { // Get the current handle. |
