Deleted Added
full compact
linux_misc.c (12458) linux_misc.c (12652)
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
3 * 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

--- 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) 1994-1995 S�ren Schmidt
3 * 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

--- 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 * $Id: linux_misc.c,v 1.3 1995/11/06 12:52:24 davidg Exp $
28 * $Id: linux_misc.c,v 1.4 1995/11/22 07:43:48 bde Exp $
29 */
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/sysproto.h>
34#include <sys/kernel.h>
35#include <sys/exec.h>
36#include <sys/mman.h>

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

46#include <sys/resourcevar.h>
47#include <sys/stat.h>
48#include <sys/sysctl.h>
49#include <sys/times.h>
50#include <sys/utsname.h>
51#include <sys/vnode.h>
52#include <sys/wait.h>
53
29 */
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/sysproto.h>
34#include <sys/kernel.h>
35#include <sys/exec.h>
36#include <sys/mman.h>

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

46#include <sys/resourcevar.h>
47#include <sys/stat.h>
48#include <sys/sysctl.h>
49#include <sys/times.h>
50#include <sys/utsname.h>
51#include <sys/vnode.h>
52#include <sys/wait.h>
53
54#include <vm/vm.h>
54#include <vm/vm_kern.h>
55
56#include <machine/cpu.h>
57#include <machine/psl.h>
58
59#include <i386/linux/linux.h>
60#include <i386/linux/sysproto.h>
61

--- 609 unchanged lines hidden ---
55#include <vm/vm_kern.h>
56
57#include <machine/cpu.h>
58#include <machine/psl.h>
59
60#include <i386/linux/linux.h>
61#include <i386/linux/sysproto.h>
62

--- 609 unchanged lines hidden ---