Tor 0.4.9.0-alpha-dev
trace_probes_cc.h
1/* Copyright (c) 2021, The Tor Project, Inc. */
2/* See LICENSE for licensing information */
3
4/**
5 * \file trace_probes_cc.c
6 * \brief The tracing probes for the congestion control subsystem.
7 * Currently, only LTTng-UST probes are available.
8 **/
9
10#ifndef TOR_TRACE_PROBES_CC_H
11#define TOR_TRACE_PROBES_CC_H
12
13#include "lib/trace/events.h"
14
15/* We only build the following if LTTng instrumentation has been enabled. */
16#ifdef USE_TRACING_INSTRUMENTATION_LTTNG
17
18#include "core/or/lttng_cc.inc"
19
20#endif /* USE_TRACING_INSTRUMENTATION_LTTNG */
21
22#endif /* !defined(TOR_TRACE_PROBES_CC_H) */
Header file for Tor tracing instrumentation definition.
LTTng tracing probe declaration for the congestion control subsystem. It is in this ....