aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386/pda.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-i386/pda.h')
-rw-r--r--include/asm-i386/pda.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-i386/pda.h b/include/asm-i386/pda.h
index f90fde22566d..08a35c478af2 100644
--- a/include/asm-i386/pda.h
+++ b/include/asm-i386/pda.h
@@ -7,12 +7,14 @@
7#define _I386_PDA_H 7#define _I386_PDA_H
8 8
9#include <linux/stddef.h> 9#include <linux/stddef.h>
10#include <linux/types.h>
10 11
11struct i386_pda 12struct i386_pda
12{ 13{
13 struct i386_pda *_pda; /* pointer to self */ 14 struct i386_pda *_pda; /* pointer to self */
14 15
15 int cpu_number; 16 int cpu_number;
17 struct task_struct *pcurrent; /* current process */
16}; 18};
17 19
18extern struct i386_pda *_cpu_pda[]; 20extern struct i386_pda *_cpu_pda[];