Deleted Added
full compact
signal.h (114349) signal.h (119888)
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 114349 2003-05-01 01:05:25Z peter $
34 * $FreeBSD: head/sys/amd64/include/signal.h 119888 2003-09-08 18:28:41Z 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

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

99 long sc_len; /* sizeof(mcontext_t) */
100 /*
101 * XXX - See <machine/ucontext.h> and <machine/npx.h> for
102 * the following fields.
103 */
104 long sc_fpformat;
105 long sc_ownedfp;
106 long sc_spare1[1];
35 */
36
37#ifndef _MACHINE_SIGNAL_H_
38#define _MACHINE_SIGNAL_H_
39
40#include <sys/cdefs.h>
41#include <sys/_sigset.h>
42

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

99 long sc_len; /* sizeof(mcontext_t) */
100 /*
101 * XXX - See <machine/ucontext.h> and <machine/npx.h> for
102 * the following fields.
103 */
104 long sc_fpformat;
105 long sc_ownedfp;
106 long sc_spare1[1];
107 long sc_fpstate[128] __aligned(16);
107 long sc_fpstate[64] __aligned(16);
108 long sc_spare2[8];
109};
110#endif /* __BSD_VISIBLE */
111
112#endif /* !_MACHINE_SIGNAL_H_ */
108 long sc_spare2[8];
109};
110#endif /* __BSD_VISIBLE */
111
112#endif /* !_MACHINE_SIGNAL_H_ */