From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/c/atomic%2Fatomic_signal_fence.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 devdocs/c/atomic%2Fatomic_signal_fence.html (limited to 'devdocs/c/atomic%2Fatomic_signal_fence.html') diff --git a/devdocs/c/atomic%2Fatomic_signal_fence.html b/devdocs/c/atomic%2Fatomic_signal_fence.html deleted file mode 100644 index 6dec1af89..000000000 --- a/devdocs/c/atomic%2Fatomic_signal_fence.html +++ /dev/null @@ -1,19 +0,0 @@ -

atomic_signal_fence

Defined in header <stdatomic.h>
void atomic_signal_fence( memory_order order );
-
(since C11)

Establishes memory synchronization ordering of non-atomic and relaxed atomic accesses, as instructed by order, between a thread and a signal handler executed on the same thread. This is equivalent to atomic_thread_fence, except no CPU instructions for memory ordering are issued. Only reordering of the instructions by the compiler is suppressed as order 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.

-

Parameters

- -
order - the memory ordering executed by this fence

Return value

(none)

-

References

See also

- -
-
(C11)
generic memory order-dependent fence synchronization primitive
(function)
C++ documentation for atomic_signal_fence
-

- © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
- https://en.cppreference.com/w/c/atomic/atomic_signal_fence -

-
-- cgit v1.2.3