tint2/src/tracing.h

16 lines
202 B
C
Raw Normal View History

2017-08-31 19:46:04 +00:00
#ifndef TRACING_H
#define TRACING_H
#ifdef HAVE_TRACING
void init_tracing();
void cleanup_tracing();
void start_tracing(void *root);
void stop_tracing();
void print_tracing_events();
#endif
#endif