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