Home | History | Annotate | Download | only in bits

Lines Matching refs:atomic_flag

41   struct atomic_flag;
84 /// atomic_flag
85 struct atomic_flag : public __atomic_flag_base
87 atomic_flag() = default;
88 ~atomic_flag() = default;
89 atomic_flag(const atomic_flag&) = delete;
90 atomic_flag& operator=(const atomic_flag&) = delete;
93 atomic_flag(bool __i): __atomic_flag_base({ __i }) { }