[PATCH] w1: Adds a sysfs entry (w1_master_search) that allows you to disable/enable...
[linux-2.6/verdex.git] / include / asm-cris / arch-v10 / thread_info.h
blob357f5df0c9076c6bf21b95bfa9beeb5506f22ad5
1 #ifndef _ASM_ARCH_THREAD_INFO_H
2 #define _ASM_ARCH_THREAD_INFO_H
4 /* how to get the thread information struct from C */
5 extern inline struct thread_info *current_thread_info(void)
7 struct thread_info *ti;
8 __asm__("and.d $sp,%0; ":"=r" (ti) : "0" (~8191UL));
9 return ti;
12 #endif