Deleted Added
full compact
kernel.h (160882) kernel.h (162954)
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 160882 2006-08-01 16:32:20Z jhb $
42 * $FreeBSD: head/sys/sys/kernel.h 162954 2006-10-02 12:59:59Z phk $
43 */
44
45#ifndef _SYS_KERNEL_H_
46#define _SYS_KERNEL_H_
47
48#include <sys/linker_set.h>
49
50#ifdef _KERNEL

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

64extern int hz; /* system clock's frequency */
65extern int psratio; /* ratio: prof / stat */
66extern int stathz; /* statistics clock's frequency */
67extern int profhz; /* profiling clock's frequency */
68extern int profprocs; /* number of process's profiling */
69extern int ticks;
70extern int lbolt; /* once a second sleep address */
71
43 */
44
45#ifndef _SYS_KERNEL_H_
46#define _SYS_KERNEL_H_
47
48#include <sys/linker_set.h>
49
50#ifdef _KERNEL

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

64extern int hz; /* system clock's frequency */
65extern int psratio; /* ratio: prof / stat */
66extern int stathz; /* statistics clock's frequency */
67extern int profhz; /* profiling clock's frequency */
68extern int profprocs; /* number of process's profiling */
69extern int ticks;
70extern int lbolt; /* once a second sleep address */
71
72extern int tz_minuteswest;
73extern int tz_dsttime;
74
75#endif /* _KERNEL */
76
77/*
78 * Enumerated types for known system startup interfaces.
79 *
80 * Startup occurs in ascending numeric order; the list entries are
81 * sorted prior to attempting startup to guarantee order. Items
82 * of the same level are arbitrated for order based on the 'order'

--- 278 unchanged lines hidden ---
72#endif /* _KERNEL */
73
74/*
75 * Enumerated types for known system startup interfaces.
76 *
77 * Startup occurs in ascending numeric order; the list entries are
78 * sorted prior to attempting startup to guarantee order. Items
79 * of the same level are arbitrated for order based on the 'order'

--- 278 unchanged lines hidden ---