blob: 3cbbecd790161babf7fa1df4a7c549d4c2107276 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _I386_CURRENT_H
2#define _I386_CURRENT_H
3
4#include <linux/thread_info.h>
5
6struct task_struct;
7
Ingo Molnar652050a2006-01-14 13:21:30 -08008static __always_inline struct task_struct * get_current(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009{
10 return current_thread_info()->task;
11}
12
13#define current get_current()
14
15#endif /* !(_I386_CURRENT_H) */