//===-- Linux implementation of the call_once function --------------------===// // // 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 // //===----------------------------------------------------------------------===// #include "src/threads/call_once.h" #include "src/__support/common.h" #include "src/__support/threads/callonce.h" #include // For once_flag and __call_once_func_t definitions. namespace __llvm_libc { LLVM_LIBC_FUNCTION(void, call_once, (once_flag * flag, __call_once_func_t func)) { callonce(reinterpret_cast(flag), reinterpret_cast(func)); } } // namespace __llvm_libc