Tor  0.4.7.0-alpha-dev
trace.c
Go to the documentation of this file.
1 /* Copyright (c) 2020-2021, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
3 
4 /**
5  * \file trace.c
6  * \brief Common functions for event-tracing implementation
7  *
8  * See trace.h and doc/HACKING/Tracing.md for more information.
9  **/
10 
11 #include "lib/trace/trace.h"
12 
13 /** Initialize the tracing library. */
14 void
16 {
17 }
18 
19 /** Free all the tracing library. */
20 void
22 {
23 }
void tor_trace_free_all(void)
Definition: trace.c:21
void tor_trace_init(void)
Definition: trace.c:15
Header for trace.c.