2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
6 #ifndef __UM_PROCESSOR_GENERIC_H
7 #define __UM_PROCESSOR_GENERIC_H
13 #include <asm/ptrace.h>
14 #include <registers.h>
15 #include <sysdep/archsetjmp.h>
17 #include <linux/prefetch.h>
21 struct thread_struct
{
22 struct task_struct
*saved_task
;
24 int singlestep_syscall
;
26 jmp_buf *fault_catcher
;
27 struct task_struct
*prev_sched
;
28 unsigned long temp_stack
;
29 struct arch_thread arch
;
56 .arch = INIT_ARCH_THREAD, \
60 static inline void release_thread(struct task_struct
*task
)
64 extern unsigned long thread_saved_pc(struct task_struct
*t
);
66 static inline void mm_copy_segments(struct mm_struct
*from_mm
,
67 struct mm_struct
*new_mm
)
71 #define init_stack (init_thread_union.stack)
74 * User space process size: 3GB (default).
76 extern unsigned long task_size
;
78 #define TASK_SIZE (task_size)
83 extern unsigned long stacksizelim
;
85 #define STACK_ROOM (stacksizelim)
86 #define STACK_TOP (TASK_SIZE - 2 * PAGE_SIZE)
87 #define STACK_TOP_MAX STACK_TOP
89 /* This decides where the kernel will search for a free chunk of vm
90 * space during mmap's.
92 #define TASK_UNMAPPED_BASE (0x40000000)
94 extern void start_thread(struct pt_regs
*regs
, unsigned long entry
,
98 unsigned long loops_per_jiffy
;
102 extern struct cpuinfo_um boot_cpu_data
;
104 #define my_cpu_data cpu_data[smp_processor_id()]
107 extern struct cpuinfo_um cpu_data
[];
108 #define current_cpu_data cpu_data[smp_processor_id()]
110 #define cpu_data (&boot_cpu_data)
111 #define current_cpu_data boot_cpu_data
115 #define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf)
116 extern unsigned long get_wchan(struct task_struct
*p
);