aboutsummaryrefslogtreecommitdiff
path: root/lib/builtins/atomic_signal_fence.c
blob: ad292d2f1c72a9a64d3c45313c6c57c25f5ed518 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*===-- atomic_signal_fence.c -----------------------------------------------===
 *
 *                     The LLVM Compiler Infrastructure
 *
 * This file is dual licensed under the MIT and the University of Illinois Open
 * Source Licenses. See LICENSE.TXT for details.
 *
 *===------------------------------------------------------------------------===
 *
 * This file implements atomic_signal_fence from C11's stdatomic.h.
 *
 *===------------------------------------------------------------------------===
 */

#include <stdatomic.h>
#undef atomic_signal_fence
void atomic_signal_fence(memory_order order) {
  __c11_atomic_signal_fence(order);
}