summaryrefslogtreecommitdiffstats
path: root/src/controllers
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2021-09-22 10:05:22 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2021-09-22 10:05:22 +0200
commit4a6099f4502f60e77d61b1b92e9ded29dc37606f (patch)
tree935d718eb08063a37372183771927ff4c0087fae /src/controllers
parentaeead2f6a111bc7cc0b146034d160f821db54a79 (diff)
Retire atomicLoadAcquire()
Diffstat (limited to 'src/controllers')
-rw-r--r--src/controllers/bulk/bulkcontroller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/bulk/bulkcontroller.cpp b/src/controllers/bulk/bulkcontroller.cpp
index a087d5574d..0f30ebaee1 100644
--- a/src/controllers/bulk/bulkcontroller.cpp
+++ b/src/controllers/bulk/bulkcontroller.cpp
@@ -28,7 +28,7 @@ void BulkReader::run() {
m_stop = 0;
unsigned char data[255];
- while (atomicLoadAcquire(m_stop) == 0) {
+ while (m_stop.loadAcquire() == 0) {
// Blocked polling: The only problem with this is that we can't close
// the device until the block is released, which means the controller
// has to send more data