Deleted Added
full compact
svr4_signal.h (65302) svr4_signal.h (68520)
1/*
2 * Copyright (c) 1998 Mark Newton
3 * Copyright (c) 1994 Christos Zoulas
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
1/*
2 * Copyright (c) 1998 Mark Newton
3 * Copyright (c) 1994 Christos Zoulas
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/compat/svr4/svr4_signal.h 65302 2000-08-31 22:54:09Z obrien $
28 * $FreeBSD: head/sys/compat/svr4/svr4_signal.h 68520 2000-11-09 08:25:48Z marcel $
29 */
30
31#ifndef _SVR4_SIGNAL_H_
32#define _SVR4_SIGNAL_H_
33
34#include <i386/svr4/svr4_machdep.h>
35#include <compat/svr4/svr4_siginfo.h>
36

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

127#define SVR4_SA_NOCLDSTOP 0x00020000 /* No jcl */
128#define SVR4_SA_ALLBITS 0x0003001f
129
130/* ss_flags */
131#define SVR4_SS_ONSTACK 0x00000001
132#define SVR4_SS_DISABLE 0x00000002
133#define SVR4_SS_ALLBITS 0x00000003
134
29 */
30
31#ifndef _SVR4_SIGNAL_H_
32#define _SVR4_SIGNAL_H_
33
34#include <i386/svr4/svr4_machdep.h>
35#include <compat/svr4/svr4_siginfo.h>
36

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

127#define SVR4_SA_NOCLDSTOP 0x00020000 /* No jcl */
128#define SVR4_SA_ALLBITS 0x0003001f
129
130/* ss_flags */
131#define SVR4_SS_ONSTACK 0x00000001
132#define SVR4_SS_DISABLE 0x00000002
133#define SVR4_SS_ALLBITS 0x00000003
134
135#define SVR4_MINSIGSTKSZ 8192
136
135void bsd_to_svr4_sigaltstack __P((const struct sigaltstack *, struct svr4_sigaltstack *));
136void bsd_to_svr4_sigset __P((const sigset_t *, svr4_sigset_t *));
137void svr4_to_bsd_sigaltstack __P((const struct svr4_sigaltstack *, struct sigaltstack *));
138void svr4_to_bsd_sigset __P((const svr4_sigset_t *, sigset_t *));
139void svr4_sendsig(sig_t, int, sigset_t *, u_long);
140
141#endif /* !_SVR4_SIGNAL_H_ */
137void bsd_to_svr4_sigaltstack __P((const struct sigaltstack *, struct svr4_sigaltstack *));
138void bsd_to_svr4_sigset __P((const sigset_t *, svr4_sigset_t *));
139void svr4_to_bsd_sigaltstack __P((const struct svr4_sigaltstack *, struct sigaltstack *));
140void svr4_to_bsd_sigset __P((const svr4_sigset_t *, sigset_t *));
141void svr4_sendsig(sig_t, int, sigset_t *, u_long);
142
143#endif /* !_SVR4_SIGNAL_H_ */