tp-samples-trace.h 301 B

123456789101112
  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_NOARGS(subsys_eventb);
  9. #endif