tint2/src/tracing.h
2017-08-31 21:46:04 +02:00

15 lines
202 B
C

#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