~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to include/trace/irq.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _LTTNG_TRACE_IRQ_H
2
 
#define _LTTNG_TRACE_IRQ_H
3
 
 
4
 
#include <linux/kdebug.h>
5
 
#include <linux/interrupt.h>
6
 
 
7
 
/*
8
 
 * action can be NULL if not available.
9
 
 */
10
 
DECLARE_TRACE(irq_entry,
11
 
        TP_PROTO(unsigned int id, struct pt_regs *regs,
12
 
                        struct irqaction *action),
13
 
                TP_ARGS(id, regs, action));
14
 
DECLARE_TRACE(irq_exit,
15
 
        TP_PROTO(irqreturn_t retval),
16
 
                TP_ARGS(retval));
17
 
 
18
 
DECLARE_TRACE(irq_tasklet_low_entry,
19
 
        TP_PROTO(struct tasklet_struct *t),
20
 
                TP_ARGS(t));
21
 
DECLARE_TRACE(irq_tasklet_low_exit,
22
 
        TP_PROTO(struct tasklet_struct *t),
23
 
                TP_ARGS(t));
24
 
DECLARE_TRACE(irq_tasklet_high_entry,
25
 
        TP_PROTO(struct tasklet_struct *t),
26
 
                TP_ARGS(t));
27
 
DECLARE_TRACE(irq_tasklet_high_exit,
28
 
        TP_PROTO(struct tasklet_struct *t),
29
 
                TP_ARGS(t));
30
 
 
31
 
#endif