ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / include / sysdep-i386 / frame.h
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __FRAME_I386_H
7 #define __FRAME_I386_H
8
9 struct arch_frame_data_raw {
10         unsigned long fp_start;
11         unsigned long sr;
12 };
13
14 struct arch_frame_data {
15         int fpstate_size;
16 };
17
18 #endif
19
20 /*
21  * Overrides for Emacs so that we follow Linus's tabbing style.
22  * Emacs will notice this stuff at the end of the file and automatically
23  * adjust the settings for this buffer only.  This must remain at the end
24  * of the file.
25  * ---------------------------------------------------------------------------
26  * Local variables:
27  * c-file-style: "linux"
28  * End:
29  */