2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #ifndef __UM_PROCESSOR_GENERIC_H
7 #define __UM_PROCESSOR_GENERIC_H
13 #include "linux/config.h"
14 #include "asm/ptrace.h"
15 #include "choose-mode.h"
19 #define cpu_relax() barrier()
21 struct thread_struct
{
27 unsigned long trap_no
;
30 struct task_struct
*prev_sched
;
31 unsigned long temp_stack
;
33 struct arch_thread arch
;
40 int singlestep_syscall
;
44 #ifdef CONFIG_MODE_SKAS
81 .arch = INIT_ARCH_THREAD, \
89 extern struct task_struct
*alloc_task_struct(void);
91 extern void release_thread(struct task_struct
*);
92 extern int kernel_thread(int (*fn
)(void *), void * arg
, unsigned long flags
);
93 extern void dump_thread(struct pt_regs
*regs
, struct user
*u
);
94 extern void prepare_to_copy(struct task_struct
*tsk
);
96 extern unsigned long thread_saved_pc(struct task_struct
*t
);
98 static inline void mm_copy_segments(struct mm_struct
*from_mm
,
99 struct mm_struct
*new_mm
)
103 #define init_stack (init_thread_union.stack)
106 * User space process size: 3GB (default).
108 extern unsigned long task_size
;
110 #define TASK_SIZE (task_size)
112 /* This decides where the kernel will search for a free chunk of vm
113 * space during mmap's.
115 #define TASK_UNMAPPED_BASE (0x40000000)
117 extern void start_thread(struct pt_regs
*regs
, unsigned long entry
,
118 unsigned long stack
);
121 unsigned long loops_per_jiffy
;
125 extern struct cpuinfo_um boot_cpu_data
;
127 #define my_cpu_data cpu_data[smp_processor_id()]
130 extern struct cpuinfo_um cpu_data
[];
131 #define current_cpu_data cpu_data[smp_processor_id()]
133 #define cpu_data (&boot_cpu_data)
134 #define current_cpu_data boot_cpu_data
137 #define KSTK_EIP(tsk) (PT_REGS_IP(&tsk->thread.regs))
138 #define KSTK_ESP(tsk) (PT_REGS_SP(&tsk->thread.regs))
139 #define get_wchan(p) (0)
144 * Overrides for Emacs so that we follow Linus's tabbing style.
145 * Emacs will notice this stuff at the end of the file and automatically
146 * adjust the settings for this buffer only. This must remain at the end
148 * ---------------------------------------------------------------------------
150 * c-file-style: "linux"