blob: 9d9f2bf7916bc677e605df59684a8f02979c5025 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
#include "src/common/platform/fork.h"
OPENTELEMETRY_BEGIN_NAMESPACE
namespace sdk
{
namespace common
{
namespace platform
{
int AtFork(void (*prepare)(), void (*parent)(), void (*child)()) noexcept
{
(void)prepare;
(void)parent;
(void)child;
return 0;
}
} // namespace platform
} // namespace common
} // namespace sdk
OPENTELEMETRY_END_NAMESPACE
|