blob: dffdc49878af6532104307430155f4aeb44bf538 [file] [log] [blame]
Mathieu Desnoyers4a089752008-07-18 12:16:16 -04001#ifndef _TP_SAMPLES_TRACE_H
2#define _TP_SAMPLES_TRACE_H
3
4#include <linux/proc_fs.h> /* for struct inode and struct file */
5#include <linux/tracepoint.h>
6
Mathieu Desnoyers7e066fb2008-11-14 17:47:47 -05007DECLARE_TRACE(subsys_event,
Steven Rostedt2939b042009-03-09 15:47:18 -04008 TP_PROTO(struct inode *inode, struct file *file),
9 TP_ARGS(inode, file));
Mathieu Desnoyers7e066fb2008-11-14 17:47:47 -050010DECLARE_TRACE(subsys_eventb,
Steven Rostedt2939b042009-03-09 15:47:18 -040011 TP_PROTO(void),
12 TP_ARGS());
Mathieu Desnoyers4a089752008-07-18 12:16:16 -040013#endif