2015-05-08 13:39:05 +08:00
|
|
|
/*===-- atomic_thread_fence.c -----------------------------------------------===
|
|
|
|
*
|
2019-01-19 18:56:40 +08:00
|
|
|
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
* See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-05-08 13:39:05 +08:00
|
|
|
*
|
|
|
|
*===------------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements atomic_thread_fence from C11's stdatomic.h.
|
|
|
|
*
|
|
|
|
*===------------------------------------------------------------------------===
|
|
|
|
*/
|
|
|
|
|
2015-09-23 06:19:21 +08:00
|
|
|
#ifndef __has_include
|
|
|
|
#define __has_include(inc) 0
|
|
|
|
#endif
|
|
|
|
|
2015-09-23 05:50:43 +08:00
|
|
|
#if __has_include(<stdatomic.h>)
|
|
|
|
|
2015-05-08 13:39:05 +08:00
|
|
|
#include <stdatomic.h>
|
|
|
|
#undef atomic_thread_fence
|
|
|
|
void atomic_thread_fence(memory_order order) {
|
|
|
|
__c11_atomic_thread_fence(order);
|
|
|
|
}
|
2015-09-23 05:50:43 +08:00
|
|
|
|
|
|
|
#endif
|