blob: 3d4f232f3473400f8c44283a7054c1ecba42953f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _ASM_IA64_CURRENT_H
#define _ASM_IA64_CURRENT_H
/*
* Copyright (C) 1998-2000 Hewlett-Packard Co
* Copyright (C) 1998-2000 David Mosberger-Tang <davidm@hpl.hp.com>
*/
/* In kernel mode, thread pointer (r13) is used to point to the
current task structure. */
register struct task_struct *current asm ("r13");
#endif /* _ASM_IA64_CURRENT_H */
|