Deleted Added
full compact
signal.h (105044) signal.h (105950)
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

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

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 * from: FreeBSD: src/sys/i386/include/signal.h,v 1.13 2000/11/09
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

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

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 * from: FreeBSD: src/sys/i386/include/signal.h,v 1.13 2000/11/09
35 * $FreeBSD: head/sys/sparc64/include/signal.h 105044 2002-10-13 12:33:38Z mike $
35 * $FreeBSD: head/sys/sparc64/include/signal.h 105950 2002-10-25 19:10:58Z peter $
36 */
37
38#ifndef _MACHINE_SIGNAL_H_
39#define _MACHINE_SIGNAL_H_
40
41#include <sys/cdefs.h>
42
43typedef long sig_atomic_t;
44
45#if __XSI_VISIBLE
46#define MINSIGSTKSZ (1024 * 4)
47#endif
48
36 */
37
38#ifndef _MACHINE_SIGNAL_H_
39#define _MACHINE_SIGNAL_H_
40
41#include <sys/cdefs.h>
42
43typedef long sig_atomic_t;
44
45#if __XSI_VISIBLE
46#define MINSIGSTKSZ (1024 * 4)
47#endif
48
49#ifdef _KERNEL
50typedef int osigset_t;
51
52struct osigcontext {
53 int dummy;
54};
55#endif
56
57#if __BSD_VISIBLE
58struct sigcontext {
59 int _dummy;
60};
61#endif /* __BSD_VISIBLE */
62
63#endif /* !_MACHINE_SIGNAL_H_ */
49#if __BSD_VISIBLE
50struct sigcontext {
51 int _dummy;
52};
53#endif /* __BSD_VISIBLE */
54
55#endif /* !_MACHINE_SIGNAL_H_ */