- atomic[meta header]
- std[meta namespace]
- function[meta id-type]
- cpp11[meta cpp]
namespace std {
bool atomic_flag_test_and_set(volatile atomic_flag* object) noexcept;
bool atomic_flag_test_and_set(atomic_flag* object) noexcept;
}
- atomic_flag[link atomic_flag.md]
アトミックにテストしてフラグを立てる
memory_order_seq_cst
のメモリオーダーにしたがって、アトミックに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(&x);
std::cout << result << std::endl;
}
{
// 値をtrueに設定する(変更前の値はtrue)
bool result = std::atomic_flag_test_and_set(&x);
std::cout << result << std::endl;
}
}
- std::atomic_flag_test_and_set[color ff0000]
- std::atomic_flag[link atomic_flag.md]
- ATOMIC_FLAG_INIT[link atomic_flag_init.md]
false
true
- C++11
- Clang: ??
- GCC: 4.7.0
- ICC: ??
- Visual C++: 2012, 2013