atomic_thread_fence.c 761 B

12345678910111213141516171819202122232425
  1. //===-- atomic_thread_fence.c ---------------------------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file implements atomic_thread_fence from C11's stdatomic.h.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #ifndef __has_include
  13. #define __has_include(inc) 0
  14. #endif
  15. #if __has_include(<stdatomic.h>)
  16. #include <stdatomic.h>
  17. #undef atomic_thread_fence
  18. void atomic_thread_fence(memory_order order) {
  19. __c11_atomic_thread_fence(order);
  20. }
  21. #endif