Deleted Added
full compact
signal.h (105950) signal.h (106977)
1/*
2 * Copyright (c) 1986, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)signal.h 8.1 (Berkeley) 6/11/93
1/*
2 * Copyright (c) 1986, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)signal.h 8.1 (Berkeley) 6/11/93
34 * $FreeBSD: head/sys/i386/include/signal.h 105950 2002-10-25 19:10:58Z peter $
34 * $FreeBSD: head/sys/i386/include/signal.h 106977 2002-11-16 06:35:53Z deischen $
35 */
36
37#ifndef _MACHINE_SIGNAL_H_
38#define _MACHINE_SIGNAL_H_
39
40#include <sys/cdefs.h>
41#include <sys/_sigset.h>
42

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

114 int sc_eax;
115 int sc_trapno;
116 int sc_err;
117 int sc_eip;
118 int sc_cs;
119 int sc_efl;
120 int sc_esp;
121 int sc_ss;
35 */
36
37#ifndef _MACHINE_SIGNAL_H_
38#define _MACHINE_SIGNAL_H_
39
40#include <sys/cdefs.h>
41#include <sys/_sigset.h>
42

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

114 int sc_eax;
115 int sc_trapno;
116 int sc_err;
117 int sc_eip;
118 int sc_cs;
119 int sc_efl;
120 int sc_esp;
121 int sc_ss;
122 int sc_len; /* sizeof(struct mcontext_t) */
122 int sc_len; /* sizeof(mcontext_t) */
123 /*
124 * XXX - See <machine/ucontext.h> and <machine/npx.h> for
125 * the following fields.
126 */
127 int sc_fpformat;
128 int sc_ownedfp;
129 int sc_spare1[1];
123 /*
124 * XXX - See <machine/ucontext.h> and <machine/npx.h> for
125 * the following fields.
126 */
127 int sc_fpformat;
128 int sc_ownedfp;
129 int sc_spare1[1];
130 int sc_fpregs[128];
130 int sc_fpstate[128];
131 int sc_spare2[8];
132};
133
134#define sc_sp sc_esp
135#define sc_fp sc_ebp
136#define sc_pc sc_eip
137#define sc_ps sc_efl
138#define sc_eflags sc_efl
139
140#endif /* __BSD_VISIBLE */
141
142#endif /* !_MACHINE_SIGNAL_H_ */
131 int sc_spare2[8];
132};
133
134#define sc_sp sc_esp
135#define sc_fp sc_ebp
136#define sc_pc sc_eip
137#define sc_ps sc_efl
138#define sc_eflags sc_efl
139
140#endif /* __BSD_VISIBLE */
141
142#endif /* !_MACHINE_SIGNAL_H_ */