blob: 0d0c042ba9c3a054b8150c7746882cfa022844fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _LITMUS_TRACE_IRQ_H_
#define _LITMUS_TRACE_IRQ_H_
#ifdef CONFIG_SCHED_OVERHEAD_TRACE
void ft_irq_fired(void);
#else
#define ft_irq_fired() /* nothing to do */
#endif
#endif
|