Deleted Added
full compact
kernel.h (64548) kernel.h (64880)
1/*-
2 * Copyright (c) 1995 Terrence R. Lambert
3 * All rights reserved.
4 *
5 * Copyright (c) 1990, 1993
6 * The Regents of the University of California. All rights reserved.
7 * (c) UNIX System Laboratories, Inc.
8 * All or some portions of this file are derived from material licensed

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

34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 *
41 * @(#)kernel.h 8.3 (Berkeley) 1/21/94
1/*-
2 * Copyright (c) 1995 Terrence R. Lambert
3 * All rights reserved.
4 *
5 * Copyright (c) 1990, 1993
6 * The Regents of the University of California. All rights reserved.
7 * (c) UNIX System Laboratories, Inc.
8 * All or some portions of this file are derived from material licensed

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

34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 *
41 * @(#)kernel.h 8.3 (Berkeley) 1/21/94
42 * $FreeBSD: head/sys/sys/kernel.h 64548 2000-08-11 18:54:47Z peter $
42 * $FreeBSD: head/sys/sys/kernel.h 64880 2000-08-20 21:34:39Z phk $
43 */
44
45#ifndef _SYS_KERNEL_H_
46#define _SYS_KERNEL_H_
47
48#include <sys/linker_set.h>
49
50#ifdef _KERNEL

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

114 SI_SUB_KMEM = 0x1800000, /* kernel memory*/
115 SI_SUB_KVM_RSRC = 0x1A00000, /* kvm operational limits*/
116 SI_SUB_CPU = 0x2000000, /* CPU resource(s)*/
117 SI_SUB_KLD = 0x2100000, /* KLD and module setup */
118 SI_SUB_INTRINSIC = 0x2200000, /* proc 0*/
119 SI_SUB_VM_CONF = 0x2300000, /* config VM, set limits*/
120 SI_SUB_RUN_QUEUE = 0x2400000, /* set up run queue*/
121 SI_SUB_CREATE_INIT = 0x2500000, /* create init process*/
43 */
44
45#ifndef _SYS_KERNEL_H_
46#define _SYS_KERNEL_H_
47
48#include <sys/linker_set.h>
49
50#ifdef _KERNEL

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

114 SI_SUB_KMEM = 0x1800000, /* kernel memory*/
115 SI_SUB_KVM_RSRC = 0x1A00000, /* kvm operational limits*/
116 SI_SUB_CPU = 0x2000000, /* CPU resource(s)*/
117 SI_SUB_KLD = 0x2100000, /* KLD and module setup */
118 SI_SUB_INTRINSIC = 0x2200000, /* proc 0*/
119 SI_SUB_VM_CONF = 0x2300000, /* config VM, set limits*/
120 SI_SUB_RUN_QUEUE = 0x2400000, /* set up run queue*/
121 SI_SUB_CREATE_INIT = 0x2500000, /* create init process*/
122 SI_SUB_DEVFS = 0x3000000, /* get DEVFS ready */
123 SI_SUB_DRIVERS = 0x3100000, /* Let Drivers initialize */
124 SI_SUB_CONFIGURE = 0x3800000, /* Configure devices */
125 SI_SUB_VFS = 0x4000000, /* virtual file system*/
126 SI_SUB_CLOCKS = 0x4800000, /* real time and stat clocks*/
127 SI_SUB_MBUF = 0x5000000, /* mbufs*/
128 SI_SUB_CLIST = 0x5800000, /* clists*/
129 SI_SUB_SYSV_SHM = 0x6400000, /* System V shared memory*/
130 SI_SUB_SYSV_SEM = 0x6800000, /* System V semaphores*/

--- 176 unchanged lines hidden ---
122 SI_SUB_DRIVERS = 0x3100000, /* Let Drivers initialize */
123 SI_SUB_CONFIGURE = 0x3800000, /* Configure devices */
124 SI_SUB_VFS = 0x4000000, /* virtual file system*/
125 SI_SUB_CLOCKS = 0x4800000, /* real time and stat clocks*/
126 SI_SUB_MBUF = 0x5000000, /* mbufs*/
127 SI_SUB_CLIST = 0x5800000, /* clists*/
128 SI_SUB_SYSV_SHM = 0x6400000, /* System V shared memory*/
129 SI_SUB_SYSV_SEM = 0x6800000, /* System V semaphores*/

--- 176 unchanged lines hidden ---