Browse Source

hle: nvflinger: buffer_queue_core: Cleanup locking.

nce_cpp
bunnei 4 years ago
parent
commit
411a53eaf3
  1. 4
      src/core/hle/service/nvflinger/buffer_queue_core.cpp

4
src/core/hle/service/nvflinger/buffer_queue_core.cpp

@ -17,7 +17,7 @@ BufferQueueCore::BufferQueueCore() : lock{mutex, std::defer_lock} {
} }
void BufferQueueCore::NotifyShutdown() { void BufferQueueCore::NotifyShutdown() {
std::unique_lock<std::mutex> lk(mutex);
std::unique_lock lk(mutex);
is_shutting_down = true; is_shutting_down = true;
@ -124,7 +124,7 @@ bool BufferQueueCore::StillTracking(const BufferItem* item) const {
void BufferQueueCore::WaitWhileAllocatingLocked() const { void BufferQueueCore::WaitWhileAllocatingLocked() const {
while (is_allocating) { while (is_allocating) {
std::unique_lock<std::mutex> lk(mutex);
std::unique_lock lk(mutex);
is_allocating_condition.wait(lk); is_allocating_condition.wait(lk);
} }
} }

Loading…
Cancel
Save