tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

trace.c (423B)


      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
     15 tor_trace_init(void)
     16 {
     17 }
     18 
     19 /** Free all the tracing library. */
     20 void
     21 tor_trace_free_all(void)
     22 {
     23 }