Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::atomic_signal_fence

      From cppreference.com
      <cpp‎ |atomic
       
       
      Concurrency support library
      Threads
      (C++11)
      (C++20)
      this_thread namespace
      (C++11)
      (C++11)
      (C++11)
      Cooperative cancellation
      Mutual exclusion
      Generic lock management
      (C++11)
      (C++11)
      (C++11)
      (C++11)
      Condition variables
      (C++11)
      Semaphores
      Latches and Barriers
      (C++20)
      (C++20)
      Futures
      (C++11)
      (C++11)
      (C++11)
      Safe reclamation
      Hazard pointers
      Atomic types
      (C++11)
      (C++20)
      Initialization of atomic types
      (C++11)(deprecated in C++20)
      (C++11)(deprecated in C++20)
      Memory ordering
      (C++11)(deprecated in C++26)
      atomic_signal_fence
      (C++11)
      Free functions for atomic operations
      Free functions for atomic flags
       
      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

      [edit]Parameters

      order - the memory ordering executed by this fence

      [edit]Return value

      (none)

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      defines memory ordering constraints for the given atomic operation
      (enum)[edit]
      generic memory order-dependent fence synchronization primitive
      (function)[edit]
      C documentation foratomic_signal_fence
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/atomic/atomic_signal_fence&oldid=138629"

      [8]ページ先頭

      ©2009-2025 Movatter.jp