blob: c5cc44d537d61d72be085ecfa076c3a639c72da4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _CRIS_CURRENT_H
#define _CRIS_CURRENT_H
struct task_struct;
static inline struct task_struct * get_current(void)
{
struct task_struct *current;
__asm__("and.d $sp,%0; ":"=r" (current) : "0" (~8191UL));
return current;
}
#define current get_current()
#endif /* !(_CRIS_CURRENT_H) */
|