Skip to content

Commit 581c8d6

Browse files
Replacing atomic_shim with portable-atomic, since atomic_shim worsk well for MIPS and MIPSEL, but has problem with some ARM flavours. (#1466)
1 parent cf61ede commit 581c8d6

3 files changed

Lines changed: 3 additions & 12 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "../metadata"
2121
version = "0.6.0-dev"
2222

2323
[dependencies]
24-
atomic-shim = "0.2.0"
24+
portable-atomic = "1"
2525
futures-util = "0.3"
2626
log = "0.4"
2727
parking_lot = { version = "0.12", features = ["deadlock_detection"] }

playback/src/mixer/softmixer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use atomic_shim::AtomicU64;
1+
use portable_atomic::AtomicU64;
22
use std::sync::atomic::Ordering;
33
use std::sync::Arc;
44

0 commit comments

Comments
 (0)