Skip to content

Latest commit

 

History

History
78 lines (58 loc) · 1.63 KB

atomic_flag_test_and_set_explicit.md

File metadata and controls

78 lines (58 loc) · 1.63 KB

atomic_flag_test_and_set_explicit

  • atomic[meta header]
  • std[meta namespace]
  • function[meta id-type]
  • cpp11[meta cpp]
namespace std {
  bool atomic_flag_test_and_set_explicit(volatile atomic_flag* object, memory_order order) noexcept;
  bool atomic_flag_test_and_set_explicit(atomic_flag* object, memory_order order) noexcept;
}
  • atomic_flag[link atomic_flag.md]
  • memory_order[link memory_order.md]

概要

アトミックにテストしてフラグを立てる

効果

orderで指定されたメモリオーダーにしたがって、アトミックにtrue値を書き込む。この操作はread-modify-write操作である。

戻り値

変更前の値

例外

投げない

#include <iostream>
#include <atomic>

int main()
{
  std::atomic_flag x = ATOMIC_FLAG_INIT;

  std::cout << std::boolalpha;
  {
    // 値をtrueに設定する(変更前の値はfalse)
    bool result = std::atomic_flag_test_and_set_explicit(&x, std::memory_order_acq_rel);
    std::cout << result << std::endl;
  }
  {
    // 値をtrueに設定する(変更前の値はtrue)
    bool result = std::atomic_flag_test_and_set_explicit(&x, std::memory_order_acq_rel);
    std::cout << result << std::endl;
  }
}
  • std::atomic_flag_test_and_set_explicit[color ff0000]
  • std::atomic_flag[link atomic_flag.md]
  • ATOMIC_FLAG_INIT[link atomic_flag_init.md]

出力

false
true

バージョン

言語

  • C++11

処理系

参照