Fix targets without 64-bit atomics.
This commit is contained in:
parent
2be9ae871f
commit
1f8c642558
3 changed files with 36 additions and 4 deletions
|
@ -23,6 +23,9 @@ sha1 = {version = "0.10.1", optional = true }
|
||||||
time = { version = "0.3.7", features = ["formatting", "macros" ], optional = true }
|
time = { version = "0.3.7", features = ["formatting", "macros" ], optional = true }
|
||||||
zstd = { version = "0.10.0", optional = true }
|
zstd = { version = "0.10.0", optional = true }
|
||||||
|
|
||||||
|
[target.'cfg(any(target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
||||||
|
crossbeam-utils = "0.8.8"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bencher = "0.1.5"
|
bencher = "0.1.5"
|
||||||
getrandom = "0.2.5"
|
getrandom = "0.2.5"
|
||||||
|
|
29
src/types.rs
29
src/types.rs
|
@ -2,8 +2,37 @@
|
||||||
#[cfg(doc)]
|
#[cfg(doc)]
|
||||||
use {crate::read::ZipFile, crate::write::FileOptions};
|
use {crate::read::ZipFile, crate::write::FileOptions};
|
||||||
|
|
||||||
|
#[cfg(not(any(target_arch = "mips", target_arch = "powerpc")))]
|
||||||
use std::sync::atomic;
|
use std::sync::atomic;
|
||||||
|
|
||||||
|
#[cfg(any(target_arch = "mips", target_arch = "powerpc"))]
|
||||||
|
mod atomic {
|
||||||
|
use crossbeam_utils::sync::ShardedLock;
|
||||||
|
pub use std::sync::atomic::Ordering;
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct AtomicU64 {
|
||||||
|
value: ShardedLock<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AtomicU64 {
|
||||||
|
pub fn new(v: u64) -> Self {
|
||||||
|
Self {
|
||||||
|
value: ShardedLock::new(v),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn get_mut(&mut self) -> &mut u64 {
|
||||||
|
self.value.get_mut().unwrap()
|
||||||
|
}
|
||||||
|
pub fn load(&self, _: Ordering) -> u64 {
|
||||||
|
*self.value.read().unwrap()
|
||||||
|
}
|
||||||
|
pub fn store(&self, value: u64, _: Ordering) {
|
||||||
|
*self.value.write().unwrap() = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(feature = "time")]
|
#[cfg(feature = "time")]
|
||||||
use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time};
|
use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue