diff options
author | Chris Robinson <[email protected]> | 2012-08-18 15:58:04 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-18 15:58:04 -0700 |
commit | 0865db564fa86df6c02ab10ec62cfbbe98f8c917 (patch) | |
tree | c3ea9c6c1dc274776fd29c409e2231fa949e9742 /Alc/backends/solaris.c | |
parent | 2b020040b41a8a8a19869263ad2816daad2e1361 (diff) |
Move the device lock into the backend function table
For backend-specific implementations: this should hold the audio mixer loop for
playback devices, and provide recursive mutex behavior.
Diffstat (limited to 'Alc/backends/solaris.c')
-rw-r--r-- | Alc/backends/solaris.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Alc/backends/solaris.c b/Alc/backends/solaris.c index 4be32a50..8d31104e 100644 --- a/Alc/backends/solaris.c +++ b/Alc/backends/solaris.c @@ -255,6 +255,8 @@ static const BackendFuncs solaris_funcs = { NULL, NULL, NULL, + ALCdevice_LockDefault, + ALCdevice_UnlockDefault, solaris_get_latency }; |