Deleted Added
full compact
signalvar.h (3098) signalvar.h (3304)
1/*
2 * Copyright (c) 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 * @(#)signalvar.h 8.3 (Berkeley) 1/4/94
1/*
2 * Copyright (c) 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 * @(#)signalvar.h 8.3 (Berkeley) 1/4/94
34 * $Id: signalvar.h,v 1.2 1994/08/02 07:53:33 davidg Exp $
34 * $Id: signalvar.h,v 1.3 1994/09/25 19:34:01 phk Exp $
35 */
36
37#ifndef _SYS_SIGNALVAR_H_ /* tmp for user.h */
38#define _SYS_SIGNALVAR_H_
39
40/*
41 * Kernel signal definitions and data structures,
42 * not exported to user programs.

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

151 * Machine-independent functions:
152 */
153int coredump __P((struct proc *p));
154void execsigs __P((struct proc *p));
155void gsignal __P((int pgid, int sig));
156int issig __P((struct proc *p));
157void pgsignal __P((struct pgrp *pgrp, int sig, int checkctty));
158void postsig __P((int sig));
35 */
36
37#ifndef _SYS_SIGNALVAR_H_ /* tmp for user.h */
38#define _SYS_SIGNALVAR_H_
39
40/*
41 * Kernel signal definitions and data structures,
42 * not exported to user programs.

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

151 * Machine-independent functions:
152 */
153int coredump __P((struct proc *p));
154void execsigs __P((struct proc *p));
155void gsignal __P((int pgid, int sig));
156int issig __P((struct proc *p));
157void pgsignal __P((struct pgrp *pgrp, int sig, int checkctty));
158void postsig __P((int sig));
159int issignal __P((struct proc *p));
159void psignal __P((struct proc *p, int sig));
160void siginit __P((struct proc *p));
161void trapsignal __P((struct proc *p, int sig, unsigned code));
162
163/*
164 * Machine-dependent functions:
165 */
166void sendsig __P((sig_t action, int sig, int returnmask, unsigned code));
167#endif /* KERNEL */
168#endif /* !_SYS_SIGNALVAR_H_ */
160void psignal __P((struct proc *p, int sig));
161void siginit __P((struct proc *p));
162void trapsignal __P((struct proc *p, int sig, unsigned code));
163
164/*
165 * Machine-dependent functions:
166 */
167void sendsig __P((sig_t action, int sig, int returnmask, unsigned code));
168#endif /* KERNEL */
169#endif /* !_SYS_SIGNALVAR_H_ */