Add "Heartbeat" to the start of several heartbeat messages.
[tor.git] / src / core / or / trace_probes_circuit.c
blob4ee5a97dff3dd454c52ee06f941bb556b75ec495
1 /* Copyright (c) 2020-2021, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 /**
5 * \file trace_probes_circuit.c
6 * \brief Tracepoint provider source file for the circuit subsystem. Probes
7 * are generated within this C file for LTTng-UST
8 **/
10 #include "orconfig.h"
13 * Following section is specific to LTTng-UST.
15 #ifdef USE_TRACING_INSTRUMENTATION_LTTNG
17 /* Header files that the probes need. */
18 #include "core/or/circuitlist.h"
19 #include "core/or/crypt_path_st.h"
20 #include "core/or/extend_info_st.h"
21 #include "core/or/or.h"
22 #include "core/or/or_circuit_st.h"
23 #include "core/or/origin_circuit_st.h"
25 #define TRACEPOINT_DEFINE
26 #define TRACEPOINT_CREATE_PROBES
28 #include "core/or/trace_probes_circuit.h"
30 #endif /* defined(USE_TRACING_INSTRUMENTATION_LTTNG) */