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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __M68K_SOFTIRQ_H
  2. #define __M68K_SOFTIRQ_H
  3. /*
  4.  * Software interrupts.. no SMP here either.
  5.  */
  6. #include <asm/atomic.h>
  7. #define cpu_bh_disable(cpu) do { local_bh_count(cpu)++; barrier(); } while (0)
  8. #define cpu_bh_enable(cpu) do { barrier(); local_bh_count(cpu)--; } while (0)
  9. #define local_bh_disable() cpu_bh_disable(smp_processor_id())
  10. #define local_bh_enable() cpu_bh_enable(smp_processor_id())
  11. #define __local_bh_enable()     local_bh_enable()   
  12. #define in_softirq() (local_bh_count(smp_processor_id()) != 0)
  13. #endif