From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/atomic%2Fatomic_thread_fence.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 devdocs/c/atomic%2Fatomic_thread_fence.html (limited to 'devdocs/c/atomic%2Fatomic_thread_fence.html') diff --git a/devdocs/c/atomic%2Fatomic_thread_fence.html b/devdocs/c/atomic%2Fatomic_thread_fence.html new file mode 100644 index 00000000..73fd6206 --- /dev/null +++ b/devdocs/c/atomic%2Fatomic_thread_fence.html @@ -0,0 +1,19 @@ +

atomic_thread_fence

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

Establishes memory synchronization ordering of non-atomic and relaxed atomic accesses, as instructed by order, without an associated atomic operation. For example, all non-atomic and relaxed atomic stores that happen before a memory_order_release fence in thread A will be synchronized with non-atomic and relaxed atomic loads from the same locations made in thread B after an memory_order_acquire fence.

+

Parameters

+ +
order - the memory ordering executed by this fence

Return value

(none)

+

References

See also

+ +
+
(C11)
fence between a thread and a signal handler executed in the same thread
(function)
C++ documentation for atomic_thread_fence
+

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

+
-- cgit v1.2.3