tp-samples-trace.h 319 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. TPPROTO(struct inode *inode, struct file *file),
  7. TPARGS(inode, file));
  8. DECLARE_TRACE(subsys_eventb,
  9. TPPROTO(void),
  10. TPARGS());
  11. #endif