events.c 365 B

1234567891011121314151617
  1. /*
  2. * This is the place to register all trace points as events.
  3. */
  4. /* someday this needs to go in a generic header */
  5. #define __STR(x) #x
  6. #define STR(x) __STR(x)
  7. #include <trace/trace_events.h>
  8. #include "trace_output.h"
  9. #include "trace_events_stage_1.h"
  10. #include "trace_events_stage_2.h"
  11. #include "trace_events_stage_3.h"
  12. #include <trace/trace_event_types.h>