about summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorKevin Reid <kpreid@google.com>2022-06-17 19:46:01 -0700
committerKevin Reid <kpreid@google.com>2022-06-17 20:03:23 -0700
commit5dcc418f62e14580a319b2b8ec24645abbc1569e (patch)
tree1b42dd44f10d2d36a7854e91aa04fd253240dd65 /library/alloc
parentc3b7d7b496b5536bb0a3d501222d2d0a8b54a69e (diff)
downloadrust-5dcc418f62e14580a319b2b8ec24645abbc1569e.tar.gz
rust-5dcc418f62e14580a319b2b8ec24645abbc1569e.zip
Document the conditional existence of `alloc::sync` and `alloc::task`.
The wording is copied from `std::sync::atomic::AtomicPtr`, with
additional advice on how to `#[cfg]` for it.
Diffstat (limited to 'library/alloc')
-rw-r--r--library/alloc/src/sync.rs9
-rw-r--r--library/alloc/src/task.rs6
2 files changed, 15 insertions, 0 deletions
diff --git a/library/alloc/src/sync.rs b/library/alloc/src/sync.rs
index 55d51e0a3c4..d91217f341a 100644
--- a/library/alloc/src/sync.rs
+++ b/library/alloc/src/sync.rs
@@ -3,6 +3,10 @@
 //! Thread-safe reference-counting pointers.
 //!
 //! See the [`Arc<T>`][Arc] documentation for more details.
+//!
+//! **Note**: This module is only available on platforms that support atomic
+//! loads and stores of pointers. This may be detected at compile time using
+//! `#[cfg(target_has_atomic = "ptr")]`.
 
 use core::any::Any;
 use core::borrow;
@@ -82,6 +86,11 @@ macro_rules! acquire {
 /// [`Mutex`][mutex], [`RwLock`][rwlock], or one of the [`Atomic`][atomic]
 /// types.
 ///
+/// **Note**: This type is only available on platforms that support atomic
+/// loads and stores of pointers, which includes all platforms that support
+/// the `std` crate but not all those which only support [`alloc`](crate).
+/// This may be detected at compile time using `#[cfg(target_has_atomic = "ptr")]`.
+///
 /// ## Thread Safety
 ///
 /// Unlike [`Rc<T>`], `Arc<T>` uses atomic operations for its reference
diff --git a/library/alloc/src/task.rs b/library/alloc/src/task.rs
index 528ee4ff154..9d8e309a978 100644
--- a/library/alloc/src/task.rs
+++ b/library/alloc/src/task.rs
@@ -1,5 +1,11 @@
 #![stable(feature = "wake_trait", since = "1.51.0")]
+
 //! Types and Traits for working with asynchronous tasks.
+//!
+//! **Note**: This module is only available on platforms that support atomic
+//! loads and stores of pointers. This may be detected at compile time using
+//! `#[cfg(target_has_atomic = "ptr")]`.
+
 use core::mem::ManuallyDrop;
 use core::task::{RawWaker, RawWakerVTable, Waker};