mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 02:28:51 +00:00
Atomic Stores / Loads
This commit is contained in:
parent
5c646d334a
commit
ab124b96c4
2 changed files with 4 additions and 2 deletions
|
@ -9,6 +9,8 @@
|
|||
#include <pulse/pulseaudio.h>
|
||||
#endif
|
||||
|
||||
#include <atomic>
|
||||
|
||||
#include "Common.h"
|
||||
#include "SoundStream.h"
|
||||
|
||||
|
@ -45,7 +47,7 @@ private:
|
|||
static void UnderflowCallback(pa_stream *s, void *userdata);
|
||||
|
||||
std::thread m_thread;
|
||||
bool m_run_thread;
|
||||
std::atomic<bool> m_run_thread;
|
||||
|
||||
int m_pa_error;
|
||||
int m_pa_connected;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue