|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /lib/modules/2.6.18-274.el5/source/include/trace/ |
Upload File : |
#ifndef _TRACE_IRQ_H #define _TRACE_IRQ_H #include <linux/tracepoint.h> #include <linux/interrupt.h> struct irqaction; struct softirq_action; DEFINE_TRACE(irq_entry, TPPROTO(unsigned int id, struct pt_regs *regs), TPARGS(id, regs)); DEFINE_TRACE(irq_exit, TPPROTO(unsigned int id, irqreturn_t retval), TPARGS(id, retval)); DEFINE_TRACE(irq_softirq_entry, TPPROTO(struct softirq_action *h, struct softirq_action *softirq_vec), TPARGS(h, softirq_vec)); DEFINE_TRACE(irq_softirq_exit, TPPROTO(struct softirq_action *h, struct softirq_action *softirq_vec), TPARGS(h, softirq_vec)); DEFINE_TRACE(irq_tasklet_low_entry, TPPROTO(struct tasklet_struct *t), TPARGS(t)); DEFINE_TRACE(irq_tasklet_low_exit, TPPROTO(struct tasklet_struct *t), TPARGS(t)); DEFINE_TRACE(irq_tasklet_high_entry, TPPROTO(struct tasklet_struct *t), TPARGS(t)); DEFINE_TRACE(irq_tasklet_high_exit, TPPROTO(struct tasklet_struct *t), TPARGS(t)); DEFINE_TRACE(softirq_raise, TPPROTO(unsigned int h, struct softirq_action *vec), TPARGS(h, vec)); #endif