Deleted Added
full compact
frame.h (153146) frame.h (153666)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 16 unchanged lines hidden (view full) ---

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)frame.h 5.2 (Berkeley) 1/18/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 16 unchanged lines hidden (view full) ---

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)frame.h 5.2 (Berkeley) 1/18/91
33 * $FreeBSD: head/sys/i386/include/frame.h 153146 2005-12-05 22:39:09Z jhb $
33 * $FreeBSD: head/sys/i386/include/frame.h 153666 2005-12-22 22:16:09Z jhb $
34 */
35
36#ifndef _MACHINE_FRAME_H_
37#define _MACHINE_FRAME_H_ 1
38
39/*
40 * System stack frames.
41 */

--- 50 unchanged lines hidden (view full) ---

92 int tf_ss;
93 /* below only when switching out of VM86 mode */
94 int tf_vm86_es;
95 int tf_vm86_ds;
96 int tf_vm86_fs;
97 int tf_vm86_gs;
98};
99
34 */
35
36#ifndef _MACHINE_FRAME_H_
37#define _MACHINE_FRAME_H_ 1
38
39/*
40 * System stack frames.
41 */

--- 50 unchanged lines hidden (view full) ---

92 int tf_ss;
93 /* below only when switching out of VM86 mode */
94 int tf_vm86_es;
95 int tf_vm86_ds;
96 int tf_vm86_fs;
97 int tf_vm86_gs;
98};
99
100/* frame of clock (same as trap frame) */
101
102struct clockframe {
103 int cf_fs;
104 int cf_es;
105 int cf_ds;
106 int cf_edi;
107 int cf_esi;
108 int cf_ebp;
109 int :32;
110 int cf_ebx;
111 int cf_edx;
112 int cf_ecx;
113 int cf_eax;
114 int :32; /* for compat with trap frame - trapno */
115 int :32; /* for compat with trap frame - err */
116 /* below portion defined in 386 hardware */
117 int cf_eip;
118 int cf_cs;
119 int cf_eflags;
120 /* below only when crossing rings (e.g. user to kernel) */
121 int cf_esp;
122 int cf_ss;
123};
124
125#endif /* _MACHINE_FRAME_H_ */
100#endif /* _MACHINE_FRAME_H_ */