2011-08-31 20:31:51 +02:00
|
|
|
#include "trace.h"
|
|
|
|
#include "trace/control.h"
|
|
|
|
|
|
|
|
|
|
|
|
void trace_print_events(FILE *stream, fprintf_function stream_printf)
|
|
|
|
{
|
2013-03-05 14:48:00 +01:00
|
|
|
TraceEventID i;
|
2011-08-31 20:31:51 +02:00
|
|
|
|
2013-03-05 14:48:00 +01:00
|
|
|
for (i = 0; i < trace_event_count(); i++) {
|
|
|
|
TraceEvent *ev = trace_event_id(i);
|
2011-08-31 20:31:51 +02:00
|
|
|
stream_printf(stream, "%s [Event ID %u] : state %u\n",
|
2013-03-05 14:48:00 +01:00
|
|
|
trace_event_get_name(ev), i, trace_event_get_state_dynamic(ev));
|
2011-08-31 20:31:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 14:48:00 +01:00
|
|
|
void trace_event_set_state_dynamic_backend(TraceEvent *ev, bool state)
|
2011-08-31 20:31:51 +02:00
|
|
|
{
|
2013-03-05 14:48:00 +01:00
|
|
|
ev->dstate = state;
|
2011-08-31 20:31:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool trace_backend_init(const char *events, const char *file)
|
|
|
|
{
|
|
|
|
if (file) {
|
|
|
|
fprintf(stderr, "error: -trace file=...: "
|
|
|
|
"option not supported by the selected tracing backend\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
trace_backend_init_events(events);
|
|
|
|
return true;
|
|
|
|
}
|