ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / kernel / skas / include / mode.h
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __MODE_SKAS_H__
7 #define __MODE_SKAS_H__
8
9 extern unsigned long exec_regs[];
10 extern unsigned long exec_fp_regs[];
11 extern unsigned long exec_fpx_regs[];
12 extern int have_fpx_regs;
13
14 extern void user_time_init_skas(void);
15 extern int copy_sc_from_user_skas(union uml_pt_regs *regs, void *from_ptr);
16 extern int copy_sc_to_user_skas(void *to_ptr, void *fp, 
17                                 union uml_pt_regs *regs, 
18                                 unsigned long fault_addr, int fault_type);
19 extern void sig_handler_common_skas(int sig, void *sc_ptr);
20 extern void halt_skas(void);
21 extern void reboot_skas(void);
22 extern void kill_off_processes_skas(void);
23
24 #endif
25
26 /*
27  * Overrides for Emacs so that we follow Linus's tabbing style.
28  * Emacs will notice this stuff at the end of the file and automatically
29  * adjust the settings for this buffer only.  This must remain at the end
30  * of the file.
31  * ---------------------------------------------------------------------------
32  * Local variables:
33  * c-file-style: "linux"
34  * End:
35  */