aboutsummaryrefslogtreecommitdiff
path: root/src/macros.rs
diff options
context:
space:
mode:
authorGravatar Adam Greig <adam@adamgreig.com> 2021-12-31 17:44:33 +0000
committerGravatar GitHub <noreply@github.com> 2021-12-31 17:44:33 +0000
commit819f8be6c64c233ce65b12f27e0efd82833a6897 (patch)
tree1f3cf84dbe58ac8efbc1619f292c0dc485c08ece /src/macros.rs
parent255faf75de84f72389a45e3d99b824e0a4599bed (diff)
parent08452a9de25e4bc66fb80015e0c78c08eb967237 (diff)
downloadcortex-m-819f8be6c64c233ce65b12f27e0efd82833a6897.tar.gz
cortex-m-819f8be6c64c233ce65b12f27e0efd82833a6897.tar.zst
cortex-m-819f8be6c64c233ce65b12f27e0efd82833a6897.zip
Merge branch 'master' into patch-1
Diffstat (limited to 'src/macros.rs')
-rw-r--r--src/macros.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/macros.rs b/src/macros.rs
index b578370..66b75b1 100644
--- a/src/macros.rs
+++ b/src/macros.rs
@@ -30,6 +30,9 @@ macro_rules! iprintln {
/// `None` variant the caller must ensure that the macro is called from a function that's executed
/// at most once in the whole lifetime of the program.
///
+/// # Note
+/// This macro is unsound on multi core systems.
+///
/// # Example
///
/// ``` no_run