tp-samples-trace.h 323 B

12345678910111213
  1. #ifndef _TP_SAMPLES_TRACE_H
  2. #define _TP_SAMPLES_TRACE_H
  3. #include <linux/proc_fs.h> /* for struct inode and struct file */
  4. #include <linux/tracepoint.h>
  5. DECLARE_TRACE(subsys_event,
  6. TP_PROTO(struct inode *inode, struct file *file),
  7. TP_ARGS(inode, file));
  8. DECLARE_TRACE(subsys_eventb,
  9. TP_PROTO(void),
  10. TP_ARGS());
  11. #endif