dotrace/dotrace.h

19 lines
267 B
C
Raw Permalink Normal View History

2018-02-23 19:14:04 +01:00
#ifndef DOTRACE_H
#define DOTRACE_H
int dotrace_active;
2018-03-05 11:33:57 +01:00
/**
Starts tracing.
Unless the preprocesser variable DOTRACE_SUSPEND is set, tracing is
active when the program starts.
*/
2018-02-23 19:14:04 +01:00
void dotrace_start (void);
2018-03-05 11:33:57 +01:00
/**
Stops tracing.
*/
2018-02-23 19:14:04 +01:00
void dotrace_stop (void);
#endif