Deleted Added
full compact
kern_sig.c (14928) kern_sig.c (15494)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)kern_sig.c 8.7 (Berkeley) 4/18/94
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)kern_sig.c 8.7 (Berkeley) 4/18/94
39 * $Id: kern_sig.c,v 1.22 1996/03/15 08:01:28 peter Exp $
39 * $Id: kern_sig.c,v 1.23 1996/03/30 15:15:30 peter Exp $
40 */
41
42#include "opt_ktrace.h"
43
44#define SIGPROP /* include signal properties table */
45#include <sys/param.h>
46#include <sys/sysproto.h>
47#include <sys/signalvar.h>

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

55#include <sys/buf.h>
56#include <sys/acct.h>
57#include <sys/file.h>
58#include <sys/kernel.h>
59#include <sys/wait.h>
60#include <sys/ktrace.h>
61#include <sys/syslog.h>
62#include <sys/stat.h>
40 */
41
42#include "opt_ktrace.h"
43
44#define SIGPROP /* include signal properties table */
45#include <sys/param.h>
46#include <sys/sysproto.h>
47#include <sys/signalvar.h>

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

55#include <sys/buf.h>
56#include <sys/acct.h>
57#include <sys/file.h>
58#include <sys/kernel.h>
59#include <sys/wait.h>
60#include <sys/ktrace.h>
61#include <sys/syslog.h>
62#include <sys/stat.h>
63#include <sys/imgact.h>
64#include <sys/sysent.h>
65
66#include <machine/cpu.h>
67
68#include <vm/vm.h>
69#include <vm/vm_param.h>
70#include <vm/vm_prot.h>
71#include <vm/lock.h>

--- 1233 unchanged lines hidden ---
63#include <sys/sysent.h>
64
65#include <machine/cpu.h>
66
67#include <vm/vm.h>
68#include <vm/vm_param.h>
69#include <vm/vm_prot.h>
70#include <vm/lock.h>

--- 1233 unchanged lines hidden ---