[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / libc / src / __support / threads / fork_callbacks.h
blob57a4f8228c5fbd81263f56e5ecb8d307c812713c
1 //===-- At-fork callback helpers -------------------------------*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_SRC___SUPPORT_THREADS_FORK_CALLBACKS_H
10 #define LLVM_LIBC_SRC___SUPPORT_THREADS_FORK_CALLBACKS_H
12 namespace LIBC_NAMESPACE {
14 using ForkCallback = void(void);
16 bool register_atfork_callbacks(ForkCallback *prepare_cd,
17 ForkCallback *parent_cb, ForkCallback *child_cb);
18 void invoke_prepare_callbacks();
19 void invoke_parent_callbacks();
20 void invoke_child_callbacks();
22 } // namespace LIBC_NAMESPACE
24 #endif // LLVM_LIBC_SRC___SUPPORT_THREADS_FORK_CALLBACKS_H