hardirq.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_HARDIRQ_H
  2. #define __ASM_SH_HARDIRQ_H
  3. #include <linux/config.h>
  4. #include <linux/threads.h>
  5. /* entry.S is sensitive to the offsets of these fields */
  6. typedef struct {
  7. unsigned int __softirq_pending;
  8. unsigned int __local_irq_count;
  9. unsigned int __local_bh_count;
  10. unsigned int __syscall_count;
  11. struct task_struct * __ksoftirqd_task;
  12. } ____cacheline_aligned irq_cpustat_t;
  13. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  14. /*
  15.  * Are we in an interrupt context? Either doing bottom half
  16.  * or hardware interrupt processing?
  17.  */
  18. #define in_interrupt() ({ int __cpu = smp_processor_id(); 
  19. (local_irq_count(__cpu) + local_bh_count(__cpu) != 0); })
  20. #define in_irq() (local_irq_count(smp_processor_id()) != 0)
  21. #ifndef CONFIG_SMP
  22. #define hardirq_trylock(cpu) (local_irq_count(cpu) == 0)
  23. #define hardirq_endlock(cpu) do { } while (0)
  24. #define irq_enter(cpu, irq) (local_irq_count(cpu)++)
  25. #define irq_exit(cpu, irq) (local_irq_count(cpu)--)
  26. #define synchronize_irq() barrier()
  27. #else
  28. #error Super-H SMP is not available
  29. #endif /* CONFIG_SMP */
  30. #endif /* __ASM_SH_HARDIRQ_H */