hw_irq_64.h 369 B

1234567891011121314151617
  1. #ifndef __ASSEMBLY__
  2. typedef int vector_irq_t[NR_VECTORS];
  3. DECLARE_PER_CPU(vector_irq_t, vector_irq);
  4. extern void __setup_vector_irq(int cpu);
  5. extern spinlock_t vector_lock;
  6. /*
  7. * Various low-level irq details needed by irq.c, process.c,
  8. * time.c, io_apic.c and smp.c
  9. *
  10. * Interrupt entry/exit code at both C and assembly level
  11. */
  12. #include <asm/ptrace.h>
  13. #endif