|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <atomic> | ||
extern"C"void atomic_signal_fence(std::memory_order order)noexcept; | (since C++11) | |
Establishes memory synchronization ordering of non-atomic and relaxed atomic accesses, as instructed byorder, between a thread and a signal handler executed on the same thread. This is equivalent tostd::atomic_thread_fence, except no CPU instructions for memory ordering are issued. Only reordering of the instructions by the compiler is suppressed asorder instructs. For example, a fence with release semantics prevents reads or writes from being moved past subsequent writes and a fence with acquire semantics prevents reads or writes from being moved ahead of preceding reads.
Contents |
| order | - | the memory ordering executed by this fence |
(none)
| This section is incomplete Reason: no example |
(C++11) | defines memory ordering constraints for the given atomic operation (enum)[edit] |
(C++11) | generic memory order-dependent fence synchronization primitive (function)[edit] |
C documentation foratomic_signal_fence | |