folly/folly/tracing/StaticTracepoint.h

/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#pragma once

#include <folly/portability/Config.h>

#if FOLLY_HAVE_ELF &&                                                    \
    (defined(__x86_64__) || defined(__i386__) || defined(__aarch64__) || \
     defined(__arm__)) &&                                                \
    !FOLLY_DISABLE_SDT

#define FOLLY_HAVE_SDT

#include <folly/tracing/StaticTracepoint-ELF.h>

#define FOLLY_SDT
// Use FOLLY_SDT_DEFINE_SEMAPHORE(provider, name) to define the semaphore
// as global variable before using the FOLLY_SDT_WITH_SEMAPHORE macro
#define FOLLY_SDT_WITH_SEMAPHORE
#define FOLLY_SDT_IS_ENABLED

#else

#define FOLLY_HAVE_SDT

#define FOLLY_SDT(provider, name, ...)
#define FOLLY_SDT_WITH_SEMAPHORE(provider, name, ...)
#define FOLLY_SDT_IS_ENABLED(provider, name)
#define FOLLY_SDT_SEMAPHORE(provider, name)
#define FOLLY_SDT_DEFINE_SEMAPHORE(provider, name)
#define FOLLY_SDT_DECLARE_SEMAPHORE(provider, name)

#endif