aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alsa.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-07-10 20:36:28 -0700
committerChris Robinson <[email protected]>2008-07-10 20:36:28 -0700
commit9e9ff44b176578035be146f89c5a06258cb6a019 (patch)
tree2447ca4ee5c26c164b3e88e88e2d0d44a110e11e /Alc/alsa.c
parentf369be148f179161258cd789917f45c66faec428 (diff)
Use volatile for member variables that are changed in a different thread
Diffstat (limited to 'Alc/alsa.c')
-rw-r--r--Alc/alsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alsa.c b/Alc/alsa.c
index 95a1cf6f..ea42b7fc 100644
--- a/Alc/alsa.c
+++ b/Alc/alsa.c
@@ -40,7 +40,7 @@ typedef struct {
ALvoid *buffer;
ALsizei size;
- int killNow;
+ volatile int killNow;
ALvoid *thread;
} alsa_data;