Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions source/basic.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6747,9 +6747,12 @@
every subsequent operation is an atomic read-modify-write operation.

\pnum
Certain library calls \defn{synchronize with} other library calls performed by
another thread. For example, an atomic store-release synchronizes with a
Certain evaluations \defn{synchronize with} other evaluations performed by
another thread.
\begin{example}
An atomic store-release synchronizes with a
load-acquire that takes its value from the store\iref{atomics.order}.
\end{example}
\begin{note}
Except in the specified cases, reading a later value does not
necessarily ensure visibility as described below. Such a requirement would
Expand Down