@@ -7023,11 +7023,11 @@ C atomic_exchange_explicit(volatile A *object,
70237023 memory_scope scope)
70247024----------
70257025
7026- Atomically replace the value pointed to by object with desired.
7027- Memory is affected according to the value of order.
7026+ Atomically replace the value pointed to by ` object` with ` desired` .
7027+ Memory is affected according to the value of ` order` .
70287028These operations are read-modify-write operations (as defined by
70297029<<C11-spec,section 5.1.2.4 of the C11 Specification>>).
7030- Atomically returns the value pointed to by object immediately before the
7030+ Atomically returns the value pointed to by ` object` immediately before the
70317031effects.
70327032
70337033NOTE: The non-explicit `atomic_exchange` function <<unified-spec, requires>>
@@ -7317,8 +7317,8 @@ bool atomic_compare_exchange_weak_explicit(
73177317The `failure` argument shall not be `memory_order_release` nor
73187318`memory_order_acq_rel`.
73197319The `failure` argument shall be no stronger than the `success` argument.
7320- Atomically, compares the value pointed to by object for equality with that
7321- in expected, and if _true_, replaces the value pointed to by `object` with
7320+ Atomically, compares the value pointed to by ` object` for equality with that
7321+ in ` expected` , and if _true_, replaces the value pointed to by `object` with
73227322`desired`, and if _false_, updates the value in `expected` with the value
73237323pointed to by `object`.
73247324Further, if the comparison is _true_, memory is affected according to the
@@ -7440,7 +7440,7 @@ C atomic_fetch_key_explicit(volatile A *object,
74407440 memory_scope scope)
74417441----------
74427442
7443- Atomically replaces the value pointed to by object with the result of the
7443+ Atomically replaces the value pointed to by ` object` with the result of the
74447444computation applied to the value pointed to by `object` and the given
74457445operand.
74467446Memory is affected according to the value of `order`.
@@ -7623,8 +7623,8 @@ void atomic_flag_clear_explicit(
76237623
76247624The `order` argument shall not be `memory_order_acquire` nor
76257625`memory_order_acq_rel`.
7626- Atomically sets the value pointed to by object to false .
7627- Memory is affected according to the value of order.
7626+ Atomically sets the value pointed to by ` object` to _false_ .
7627+ Memory is affected according to the value of ` order` .
76287628
76297629NOTE: The non-explicit `atomic_flag_clear` function <<unified-spec, requires>>
76307630support for OpenCL C 2.0, or OpenCL C 3.0 or newer and both the
0 commit comments