aboutsummaryrefslogtreecommitdiff
path: root/libc/src/threads/call_once.cpp
blob: 67ab34509a4c945db129405aeb2b3ac9eb6a8fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===-- 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 <threads.h> // 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<CallOnceFlag *>(flag),
           reinterpret_cast<CallOnceCallback *>(func));
}

} // namespace __llvm_libc