AudioCommon: unlock mutex explicitly to avoid -Wunused-result warning
This commit is contained in:
parent
0cc1d4c62d
commit
1d8b1715ab
|
@ -20,7 +20,7 @@ AlsaSound::~AlsaSound()
|
||||||
m_thread_status.store(ALSAThreadStatus::STOPPING);
|
m_thread_status.store(ALSAThreadStatus::STOPPING);
|
||||||
|
|
||||||
// Immediately lock and unlock mutex to prevent cv race.
|
// Immediately lock and unlock mutex to prevent cv race.
|
||||||
std::unique_lock<std::mutex>{cv_m};
|
std::unique_lock<std::mutex>{cv_m}.unlock();
|
||||||
|
|
||||||
// Give the opportunity to the audio thread
|
// Give the opportunity to the audio thread
|
||||||
// to realize we are stopping the emulation
|
// to realize we are stopping the emulation
|
||||||
|
@ -82,7 +82,7 @@ bool AlsaSound::SetRunning(bool running)
|
||||||
m_thread_status.store(running ? ALSAThreadStatus::RUNNING : ALSAThreadStatus::PAUSED);
|
m_thread_status.store(running ? ALSAThreadStatus::RUNNING : ALSAThreadStatus::PAUSED);
|
||||||
|
|
||||||
// Immediately lock and unlock mutex to prevent cv race.
|
// Immediately lock and unlock mutex to prevent cv race.
|
||||||
std::unique_lock<std::mutex>{cv_m};
|
std::unique_lock<std::mutex>{cv_m}.unlock();
|
||||||
|
|
||||||
// Notify thread that status has changed
|
// Notify thread that status has changed
|
||||||
cv.notify_one();
|
cv.notify_one();
|
||||||
|
|
Loading…
Reference in New Issue