summaryrefslogtreecommitdiffstats
path: root/include/asm-cris/current.h
blob: 6b00b86b6a9d690a5e81da264e1575fe46cdd0a8 (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) */