2005-04-16 15:20:36 -07:00
|
|
|
#ifndef __ASSEMBLY__
|
2007-07-21 17:11:16 +02:00
|
|
|
|
2006-10-04 02:16:51 -07:00
|
|
|
typedef int vector_irq_t[NR_VECTORS];
|
|
|
|
DECLARE_PER_CPU(vector_irq_t, vector_irq);
|
2006-10-25 01:00:23 +02:00
|
|
|
extern void __setup_vector_irq(int cpu);
|
|
|
|
extern spinlock_t vector_lock;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Various low-level irq details needed by irq.c, process.c,
|
|
|
|
* time.c, io_apic.c and smp.c
|
|
|
|
*
|
|
|
|
* Interrupt entry/exit code at both C and assembly level
|
|
|
|
*/
|
|
|
|
|
2008-01-30 13:30:39 +01:00
|
|
|
extern void enable_IO_APIC(void);
|
2008-01-30 13:33:19 +01:00
|
|
|
extern void native_init_IRQ(void);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
|
|
|
|
#endif
|