Deleted Added
full compact
init_main.c (7090) init_main.c (7430)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1992, 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 * @(#)init_main.c 8.9 (Berkeley) 1/21/94
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1992, 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 * @(#)init_main.c 8.9 (Berkeley) 1/21/94
39 * $Id: init_main.c,v 1.18 1995/02/20 22:23:09 davidg Exp $
39 * $Id: init_main.c,v 1.19 1995/03/16 18:12:27 bde Exp $
40 */
41
42#include <sys/param.h>
43#include <sys/filedesc.h>
44#include <sys/errno.h>
45#include <sys/exec.h>
46#include <sys/kernel.h>
47#ifdef GPROF

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

53#include <sys/signalvar.h>
54#include <sys/systm.h>
55#include <sys/vnode.h>
56#include <sys/sysent.h>
57#include <sys/conf.h>
58#include <sys/buf.h>
59#include <sys/clist.h>
60#include <sys/device.h>
40 */
41
42#include <sys/param.h>
43#include <sys/filedesc.h>
44#include <sys/errno.h>
45#include <sys/exec.h>
46#include <sys/kernel.h>
47#ifdef GPROF

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

53#include <sys/signalvar.h>
54#include <sys/systm.h>
55#include <sys/vnode.h>
56#include <sys/sysent.h>
57#include <sys/conf.h>
58#include <sys/buf.h>
59#include <sys/clist.h>
60#include <sys/device.h>
61#include <sys/msg.h>
61#include <sys/protosw.h>
62#include <sys/reboot.h>
62#include <sys/protosw.h>
63#include <sys/reboot.h>
64#include <sys/sem.h>
65#include <sys/shm.h>
63#include <sys/user.h>
64
65#include <ufs/ufs/quota.h>
66
67#include <machine/cpu.h>
68
69#include <vm/vm.h>
70#include <vm/vm_pageout.h>

--- 385 unchanged lines hidden ---
66#include <sys/user.h>
67
68#include <ufs/ufs/quota.h>
69
70#include <machine/cpu.h>
71
72#include <vm/vm.h>
73#include <vm/vm_pageout.h>

--- 385 unchanged lines hidden ---