diff options
author | bunnei <bunneidev@gmail.com> | 2020-06-12 22:30:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 22:30:19 -0400 |
commit | e1911e5c8b1d18eb9d328b253d0834f04d420e2f (patch) | |
tree | f5ed9c4bf745ee0ff8e043a5b25700eb91091e8e /src | |
parent | 83e3b77ed7eaa12ec497fd7d978c2e889c5d14db (diff) | |
parent | 43bf860b2237cfa873e2452dd8d0b5f43193a05e (diff) |
Merge pull request #4010 from ogniK5377/reserve-always-break
kernel: ResourceLimit::Reserve remove useless while loop
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/resource_limit.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/hle/kernel/resource_limit.cpp b/src/core/hle/kernel/resource_limit.cpp index d9beaa3a4..212e442f4 100644 --- a/src/core/hle/kernel/resource_limit.cpp +++ b/src/core/hle/kernel/resource_limit.cpp @@ -24,13 +24,9 @@ bool ResourceLimit::Reserve(ResourceType resource, s64 amount, u64 timeout) { const std::size_t index{ResourceTypeToIndex(resource)}; s64 new_value = current[index] + amount; - while (new_value > limit[index] && available[index] + amount <= limit[index]) { + if (new_value > limit[index] && available[index] + amount <= limit[index]) { // TODO(bunnei): This is wrong for multicore, we should wait the calling thread for timeout new_value = current[index] + amount; - - if (timeout >= 0) { - break; - } } if (new_value <= limit[index]) { |