xref: /spdk/lib/trace/trace_internal.h (revision 674b4c1a007527480e616782ed93e884160b7f07)
1 /*   SPDX-License-Identifier: BSD-3-Clause
2  *   Copyright (C) 2022 Intel Corporation.
3  *   All rights reserved.
4  */
5 
6 #ifndef __TRACE_INTERNAL_H__
7 #define __TRACE_INTERNAL_H__
8 
9 #include "spdk/trace.h"
10 
11 /* Get shared memory file name. */
12 const char *trace_get_shm_name(void);
13 
14 int trace_flags_init(void);
15 void trace_flags_fini(void);
16 
17 #endif
18