ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-ppc64 / current.h
1 #ifndef _PPC64_CURRENT_H
2 #define _PPC64_CURRENT_H
3
4 #include <asm/paca.h>
5
6 /*
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version
10  * 2 of the License, or (at your option) any later version.
11  *
12  * Use r13 for current since the ppc64 ABI reserves it - Anton
13  */
14
15 #include <asm/thread_info.h>
16
17 #define get_current()   ((struct task_struct *)(get_paca()->xCurrent))
18 #define current         get_current()
19
20 #endif /* !(_PPC64_CURRENT_H) */