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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __M68K_HARDIRQ_H
  2. #define __M68K_HARDIRQ_H
  3. #include <linux/threads.h>
  4. #include <linux/cache.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. #define in_interrupt() (local_irq_count(smp_processor_id()) + local_bh_count(smp_processor_id()) != 0)
  15. #define in_irq() (local_irq_count(smp_processor_id()) != 0)
  16. #define hardirq_trylock(cpu) (local_irq_count(cpu) == 0)
  17. #define hardirq_endlock(cpu) do { } while (0)
  18. #define irq_enter(cpu) (local_irq_count(cpu)++)
  19. #define irq_exit(cpu) (local_irq_count(cpu)--)
  20. #define synchronize_irq() barrier()
  21. #endif