mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-23 00:00:10 +02:00
tokio: add riscv32 to non atomic64 architectures (#4185)
This commit is contained in:
@@ -422,7 +422,8 @@ macro_rules! cfg_has_atomic_u64 {
|
||||
#[cfg(not(any(
|
||||
target_arch = "arm",
|
||||
target_arch = "mips",
|
||||
target_arch = "powerpc"
|
||||
target_arch = "powerpc",
|
||||
target_arch = "riscv32"
|
||||
)))]
|
||||
$item
|
||||
)*
|
||||
@@ -435,7 +436,8 @@ macro_rules! cfg_not_has_atomic_u64 {
|
||||
#[cfg(any(
|
||||
target_arch = "arm",
|
||||
target_arch = "mips",
|
||||
target_arch = "powerpc"
|
||||
target_arch = "powerpc",
|
||||
target_arch = "riscv32"
|
||||
))]
|
||||
$item
|
||||
)*
|
||||
|
||||
Reference in New Issue
Block a user