current.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASMARM_CURRENT_H
  2. #define _ASMARM_CURRENT_H
  3. #include <linux/thread_info.h>
  4. static inline struct task_struct *get_current(void) __attribute_const__;
  5. static inline struct task_struct *get_current(void)
  6. {
  7. return current_thread_info()->task;
  8. }
  9. #define current (get_current())
  10. #endif /* _ASMARM_CURRENT_H */