Namespaces
Variants
Views
Actions

ATOMIC_FLAG_INIT

From cppreference.com
< c‎ | atomic
Defined in header <stdatomic.h>
#define ATOMIC_FLAG_INIT /* unspecified */
(since C11)

Expands to an expression that can be used to initialize atomic_flag type. The value atomic_flag that is not initialized using this macro is undefined.

[edit] Example

#include <stdatomic.h>
 
atomic_flag flag = ATOMIC_FLAG_INIT;


[edit] References

  • C11 standard (ISO/IEC 9899:2011):
  • 7.17.1/3 ATOMIC_FLAG_INIT (p: 273)
  • 7.17.8/4 ATOMIC_FLAG_INIT (p: 285)

[edit] See also

(C11)(deprecated)
initializes a new atomic object
(function macro) [edit]
lock-free atomic boolean flag
(struct) [edit]