Skip to content

Commit 751f24e

Browse files
committed
Allow arc pool on thumbv6
1 parent d3be154 commit 751f24e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/pool/singleton.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pub mod arc;
1717
/// Instantiates a pool as a global singleton
1818
// NOTE(any(test)) makes testing easier (no need to enable Cargo features for testing)
1919
#[cfg(any(
20+
armv6m,
2021
armv7a,
2122
armv7r,
2223
armv7m,

src/pool/singleton/arc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ use crate::pool::{self, stack::Ptr, Node};
9292
/// Instantiates a pool of Arc pointers as a global singleton
9393
// NOTE(any(test)) makes testing easier (no need to enable Cargo features for testing)
9494
#[cfg(any(
95+
armv6m,
9596
armv7a,
9697
armv7r,
9798
armv7m,

0 commit comments

Comments
 (0)