summaryrefslogtreecommitdiff
path: root/release/src/linux/linux/include/asm-arm/current.h
blob: 597a8773cc5bb9fbd537530b39099b358de02275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _ASMARM_CURRENT_H
#define _ASMARM_CURRENT_H

static inline struct task_struct *get_current(void) __attribute__ (( __const__ ));

static inline struct task_struct *get_current(void)
{
	register unsigned long sp asm ("sp");
	return (struct task_struct *)(sp & ~0x1fff);
}

#define current (get_current())

#endif /* _ASMARM_CURRENT_H */