Deleted Added
full compact
frame.h (719) frame.h (778)
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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * 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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)frame.h 5.2 (Berkeley) 1/18/91
37 * $Id: frame.h,v 1.2 1993/10/08 20:50:59 rgrimes Exp $
37 * $Id: frame.h,v 1.3 1993/11/07 17:42:56 wollman Exp $
38 */
39
40#ifndef _MACHINE_FRAME_H_
41#define _MACHINE_FRAME_H_ 1
42
43#include <sys/signal.h>
44
45/*

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

122 int sf_ebp;
123 int :32; /* redundant save of isp */
124 int sf_ebx;
125 int sf_edx;
126 int sf_ecx;
127 int sf_eax;
128 int sf_eflags;
129 /* below portion defined in 386 hardware */
38 */
39
40#ifndef _MACHINE_FRAME_H_
41#define _MACHINE_FRAME_H_ 1
42
43#include <sys/signal.h>
44
45/*

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

122 int sf_ebp;
123 int :32; /* redundant save of isp */
124 int sf_ebx;
125 int sf_edx;
126 int sf_ecx;
127 int sf_eax;
128 int sf_eflags;
129 /* below portion defined in 386 hardware */
130/* int sf_args[N]; /* if call gate copy args enabled!*/
130/* int sf_args[N];*/ /* if call gate copy args enabled!*/
131 int sf_eip;
132 int sf_cs;
133 /* below only when transitting rings (e.g. user to kernel) */
134 int sf_esp;
135 int sf_ss;
136};
137#endif /* _MACHINE_FRAME_H_ */
131 int sf_eip;
132 int sf_cs;
133 /* below only when transitting rings (e.g. user to kernel) */
134 int sf_esp;
135 int sf_ss;
136};
137#endif /* _MACHINE_FRAME_H_ */