Deleted Added
full compact
signal.h (121103) signal.h (122278)
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/amd64/include/signal.h 121103 2003-10-15 02:04:52Z peter $
34 * $FreeBSD: head/sys/amd64/include/signal.h 122278 2003-11-08 02:39:46Z peter $
35 */
36
37#ifndef _MACHINE_SIGNAL_H_
38#define _MACHINE_SIGNAL_H_
39
40#include <sys/cdefs.h>
41#include <sys/_sigset.h>
42

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

95 long sc_err;
96 long sc_rip;
97 long sc_cs;
98 long sc_rflags;
99 long sc_rsp;
100 long sc_ss;
101 long sc_len; /* sizeof(mcontext_t) */
102 /*
35 */
36
37#ifndef _MACHINE_SIGNAL_H_
38#define _MACHINE_SIGNAL_H_
39
40#include <sys/cdefs.h>
41#include <sys/_sigset.h>
42

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

95 long sc_err;
96 long sc_rip;
97 long sc_cs;
98 long sc_rflags;
99 long sc_rsp;
100 long sc_ss;
101 long sc_len; /* sizeof(mcontext_t) */
102 /*
103 * XXX - See <machine/ucontext.h> and <machine/npx.h> for
103 * XXX - See <machine/ucontext.h> and <machine/fpu.h> for
104 * the following fields.
105 */
106 long sc_fpformat;
107 long sc_ownedfp;
108 long sc_fpstate[64] __aligned(16);
109 long sc_spare[8];
110};
111#endif /* __BSD_VISIBLE */
112
113#endif /* !_MACHINE_SIGNAL_H_ */
104 * the following fields.
105 */
106 long sc_fpformat;
107 long sc_ownedfp;
108 long sc_fpstate[64] __aligned(16);
109 long sc_spare[8];
110};
111#endif /* __BSD_VISIBLE */
112
113#endif /* !_MACHINE_SIGNAL_H_ */