Blame view

samples/tracepoints/tp-samples-trace.h 301 Bytes
4a0897526   Mathieu Desnoyers   tracing: tracepoi...
1
2
3
4
5
  #ifndef _TP_SAMPLES_TRACE_H
  #define _TP_SAMPLES_TRACE_H
  
  #include <linux/proc_fs.h>	/* for struct inode and struct file */
  #include <linux/tracepoint.h>
7e066fb87   Mathieu Desnoyers   tracepoints: add ...
6
  DECLARE_TRACE(subsys_event,
2939b0469   Steven Rostedt   tracing: replace ...
7
8
  	TP_PROTO(struct inode *inode, struct file *file),
  	TP_ARGS(inode, file));
38516ab59   Steven Rostedt   tracing: Let trac...
9
  DECLARE_TRACE_NOARGS(subsys_eventb);
4a0897526   Mathieu Desnoyers   tracing: tracepoi...
10
  #endif