tmp/tmpb8cgz735/{from.md → to.md}
RENAMED
|
@@ -42,11 +42,11 @@ extern "C" void atomic_thread_fence(memory_order order) noexcept;
|
|
| 42 |
|
| 43 |
``` cpp
|
| 44 |
extern "C" void atomic_signal_fence(memory_order order) noexcept;
|
| 45 |
```
|
| 46 |
|
| 47 |
-
*Effects:*
|
| 48 |
resulting ordering constraints are established only between a thread and
|
| 49 |
a signal handler executed in the same thread.
|
| 50 |
|
| 51 |
*Note:* `atomic_signal_fence` can be used to specify the order in which
|
| 52 |
actions performed by the thread become visible to the signal handler.
|
|
|
|
| 42 |
|
| 43 |
``` cpp
|
| 44 |
extern "C" void atomic_signal_fence(memory_order order) noexcept;
|
| 45 |
```
|
| 46 |
|
| 47 |
+
*Effects:* Equivalent to `atomic_thread_fence(order)`, except that the
|
| 48 |
resulting ordering constraints are established only between a thread and
|
| 49 |
a signal handler executed in the same thread.
|
| 50 |
|
| 51 |
*Note:* `atomic_signal_fence` can be used to specify the order in which
|
| 52 |
actions performed by the thread become visible to the signal handler.
|