//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // struct atomic_flag // bool test_and_set(memory_order = memory_order_seq_cst); // bool test_and_set(memory_order = memory_order_seq_cst) volatile; #include #include int main() { std::atomic_flag f = ATOMIC_FLAG_INIT; assert(f.test_and_set() == 0); assert(f.test_and_set() == 1); }