Deleted Added
full compact
kernel.h (78619) kernel.h (83130)
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 78619 2001-06-22 19:51:45Z mjacob $
42 * $FreeBSD: head/sys/sys/kernel.h 83130 2001-09-06 02:40:43Z jlemon $
43 */
44
45#ifndef _SYS_KERNEL_H_
46#define _SYS_KERNEL_H_
47
48#include <sys/linker_set.h>
49
50#ifdef _KERNEL

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

124 SI_SUB_INTRINSIC = 0x2200000, /* proc 0*/
125 SI_SUB_VM_CONF = 0x2300000, /* config VM, set limits*/
126 SI_SUB_RUN_QUEUE = 0x2400000, /* set up run queue*/
127 SI_SUB_CREATE_INIT = 0x2500000, /* create init process*/
128 SI_SUB_SCHED_IDLE = 0x2600000, /* required idle procs */
129 SI_SUB_MBUF = 0x2700000, /* mbuf subsystem */
130 SI_SUB_INTR = 0x2800000, /* interrupt threads */
131 SI_SUB_SOFTINTR = 0x2800001, /* start soft interrupt thread */
43 */
44
45#ifndef _SYS_KERNEL_H_
46#define _SYS_KERNEL_H_
47
48#include <sys/linker_set.h>
49
50#ifdef _KERNEL

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

124 SI_SUB_INTRINSIC = 0x2200000, /* proc 0*/
125 SI_SUB_VM_CONF = 0x2300000, /* config VM, set limits*/
126 SI_SUB_RUN_QUEUE = 0x2400000, /* set up run queue*/
127 SI_SUB_CREATE_INIT = 0x2500000, /* create init process*/
128 SI_SUB_SCHED_IDLE = 0x2600000, /* required idle procs */
129 SI_SUB_MBUF = 0x2700000, /* mbuf subsystem */
130 SI_SUB_INTR = 0x2800000, /* interrupt threads */
131 SI_SUB_SOFTINTR = 0x2800001, /* start soft interrupt thread */
132 SI_SUB_INIT_IF = 0x3000000, /* prep for net interfaces */
132 SI_SUB_DRIVERS = 0x3100000, /* Let Drivers initialize */
133 SI_SUB_CONFIGURE = 0x3800000, /* Configure devices */
134 SI_SUB_VFS = 0x4000000, /* virtual file system*/
135 SI_SUB_CLOCKS = 0x4800000, /* real time and stat clocks*/
136 SI_SUB_CLIST = 0x5800000, /* clists*/
137 SI_SUB_SYSV_SHM = 0x6400000, /* System V shared memory*/
138 SI_SUB_SYSV_SEM = 0x6800000, /* System V semaphores*/
139 SI_SUB_SYSV_MSG = 0x6C00000, /* System V message queues*/

--- 184 unchanged lines hidden ---
133 SI_SUB_DRIVERS = 0x3100000, /* Let Drivers initialize */
134 SI_SUB_CONFIGURE = 0x3800000, /* Configure devices */
135 SI_SUB_VFS = 0x4000000, /* virtual file system*/
136 SI_SUB_CLOCKS = 0x4800000, /* real time and stat clocks*/
137 SI_SUB_CLIST = 0x5800000, /* clists*/
138 SI_SUB_SYSV_SHM = 0x6400000, /* System V shared memory*/
139 SI_SUB_SYSV_SEM = 0x6800000, /* System V semaphores*/
140 SI_SUB_SYSV_MSG = 0x6C00000, /* System V message queues*/

--- 184 unchanged lines hidden ---