hardirq.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_HARDIRQ_H
  2. #define __ASM_HARDIRQ_H
  3. /* only non-SMP supported */
  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; /* waitqueue is too large */
  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()  ((local_irq_count(smp_processor_id()) + 
  19.   local_bh_count(smp_processor_id())) != 0)
  20. #define in_irq()        (local_irq_count(smp_processor_id()) != 0)
  21. #define hardirq_trylock(cpu)    (local_irq_count(cpu) == 0)
  22. #define hardirq_endlock(cpu)    do { (void)(cpu); } while (0)
  23. #define irq_enter(cpu)      (local_irq_count(cpu)++)
  24. #define irq_exit(cpu)       (local_irq_count(cpu)--)
  25. #define synchronize_irq()       barrier()
  26. #endif /* __ASM_HARDIRQ_H */