https://github.com/torvalds/linux
Raw File
Tip revision: dd775ae2549217d3ae09363e3edb305d0fa19928 authored by Linus Torvalds on 31 March 2012, 23:24:09 UTC
Linux 3.4-rc1
Tip revision: dd775ae
tp-samples-trace.h
#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>

DECLARE_TRACE(subsys_event,
	TP_PROTO(struct inode *inode, struct file *file),
	TP_ARGS(inode, file));
DECLARE_TRACE_NOARGS(subsys_eventb);
#endif
back to top