X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fstdatomic.h;h=d4d21984ea8a1ea37f5db767a1deffca56a05c21;hb=2d0d4ac38e05905a6633b3f2d5112ccadd45c27f;hp=035f848d33b648eaad450e7c29d38b7b422c5060;hpb=7dddcdb767f02f9b0c470ac516b18ad91a35d43d;p=model-checker.git diff --git a/include/stdatomic.h b/include/stdatomic.h index 035f848..d4d2198 100644 --- a/include/stdatomic.h +++ b/include/stdatomic.h @@ -1,3 +1,8 @@ +/** + * @file stdatomic.h + * @brief C11 atomic interface header + */ + #ifndef __STDATOMIC_H__ #define __STDATOMIC_H__ @@ -59,6 +64,9 @@ using std::memory_order_release; using std::memory_order_acq_rel; using std::memory_order_seq_cst; -#endif +using std::atomic_thread_fence; +using std::atomic_signal_fence; + +#endif /* __cplusplus */ #endif /* __STDATOMIC_H__ */