events.c 380 B

123456789101112131415
  1. /*
  2. * This is the place to register all trace points as events.
  3. * Include the trace/<type>.h at the top.
  4. * Include the trace/<type>_event_types.h at the bottom.
  5. */
  6. /* trace/<type>.h here */
  7. #include <trace/sched.h>
  8. #include <trace/irq.h>
  9. #include "trace_events.h"
  10. /* trace/<type>_event_types.h here */
  11. #include <trace/sched_event_types.h>
  12. #include <trace/irq_event_types.h>