summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2019-08-20 14:11:35 +0200
committerRichard Braun <rbraun@sceen.net>2019-08-20 14:11:35 +0200
commit33077a4d6dd6b2446ddb9b8fc5dc45fadf7212da (patch)
tree99279a8ec2de6aeffde471fb7d0547273ba37f93
parent9b7e615887a0495faba1470d51fcfa0555deb09b (diff)
Slightly improve the implementation section
-rw-r--r--doc/memory.9.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/memory.9.txt b/doc/memory.9.txt
index 11398088..9a18355c 100644
--- a/doc/memory.9.txt
+++ b/doc/memory.9.txt
@@ -121,7 +121,8 @@ operations, they could in theory be reordered across fences. It is
assumed that all the built-in atomic operations provided by the
compiler are volatile-qualified. Local atomic operations must also
be volatile-qualified. With current compiler implementations, this
-guarantees that atomic operations may not be reordered across fences.
+guarantees that local atomic operations may not be reordered across
+fences.
SEE
---