blob: 9043efe3604651f86fbed68de34cdf14ef3f9b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Copyright (c) 2020, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file trace_stub.c
* \brief Stub declaratinos for use when trace library is disabled.
**/
#include "lib/subsys/subsys.h"
#include "lib/trace/trace_sys.h"
const subsys_fns_t sys_tracing = {
SUBSYS_DECLARE_LOCATION(),
.name = "tracing",
.supported = false,
.level = TRACE_SUBSYS_LEVEL,
};
|