You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
324 B
13 lines
324 B
#ifndef _ASM_CRIS_ARCH_THREAD_INFO_H
|
|
#define _ASM_CRIS_ARCH_THREAD_INFO_H
|
|
|
|
/* Return a thread_info struct. */
|
|
static inline struct thread_info *current_thread_info(void)
|
|
{
|
|
struct thread_info *ti;
|
|
|
|
__asm__ __volatile__ ("and.d $sp, %0" : "=r" (ti) : "0" (~8191UL));
|
|
return ti;
|
|
}
|
|
|
|
#endif /* _ASM_CRIS_ARCH_THREAD_INFO_H */
|
|
|