blob: 218f4152d3e594f303ce1f9b386eb2ac5c41289e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_ARCH_THREAD_INFO_H
2#define _ASM_ARCH_THREAD_INFO_H
3
4/* how to get the thread information struct from C */
Adrian Bunkd9b54442005-11-07 00:58:44 -08005static inline struct thread_info *current_thread_info(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006{
7 struct thread_info *ti;
8 __asm__("and.d $sp,%0; ":"=r" (ti) : "0" (~8191UL));
9 return ti;
10}
11
12#endif