2008-07-18 16:16:16 +00:00
|
|
|
#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>
|
|
|
|
|
2008-11-14 22:47:47 +00:00
|
|
|
DECLARE_TRACE(subsys_event,
|
2008-07-18 16:16:16 +00:00
|
|
|
TPPROTO(struct inode *inode, struct file *file),
|
|
|
|
TPARGS(inode, file));
|
2008-11-14 22:47:47 +00:00
|
|
|
DECLARE_TRACE(subsys_eventb,
|
2008-07-18 16:16:16 +00:00
|
|
|
TPPROTO(void),
|
|
|
|
TPARGS());
|
|
|
|
#endif
|