aboutsummaryrefslogtreecommitdiff
path: root/include/trace/trap.h
blob: 1b70c0499606622e72082d702a45a1fd7cf04725 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _TRACE_TRAP_H
#define _TRACE_TRAP_H

#include <linux/tracepoint.h>

DECLARE_TRACE(trap_entry,
	TP_PROTO(struct pt_regs *regs, long id),
	TP_ARGS(regs, id));
DECLARE_TRACE_NOARGS(trap_exit);

#endif