Deleted Added
full compact
sysctl.h (3038) sysctl.h (3304)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Mike Karels at Berkeley Software Design, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)sysctl.h 8.1 (Berkeley) 6/2/93
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Mike Karels at Berkeley Software Design, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)sysctl.h 8.1 (Berkeley) 6/2/93
37 * $Id: sysctl.h,v 1.11 1994/09/21 03:47:33 wollman Exp $
37 * $Id: sysctl.h,v 1.12 1994/09/23 19:07:42 wollman Exp $
38 */
39
40#ifndef _SYS_SYSCTL_H_
41#define _SYS_SYSCTL_H_
42
43/*
44 * These are for the eproc structure defined below.
45 */

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

310 * Second level identifier specifies which debug variable.
311 * Third level identifier specifies which stucture component.
312 */
313#define CTL_DEBUG_NAME 0 /* string: variable name */
314#define CTL_DEBUG_VALUE 1 /* int: variable value */
315#define CTL_DEBUG_MAXID 20
316
317#ifdef KERNEL
38 */
39
40#ifndef _SYS_SYSCTL_H_
41#define _SYS_SYSCTL_H_
42
43/*
44 * These are for the eproc structure defined below.
45 */

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

310 * Second level identifier specifies which debug variable.
311 * Third level identifier specifies which stucture component.
312 */
313#define CTL_DEBUG_NAME 0 /* string: variable name */
314#define CTL_DEBUG_VALUE 1 /* int: variable value */
315#define CTL_DEBUG_MAXID 20
316
317#ifdef KERNEL
318#ifdef DEBUG
318#if defined(DEBUG) || defined(DIAGNOSTIC)
319/*
320 * CTL_DEBUG variables.
321 *
322 * These are declared as separate variables so that they can be
323 * individually initialized at the location of their associated
324 * variable. The loader prevents multiple use by issuing errors
325 * if a variable is initialized in more than one place. They are
326 * aggregated into an array in debug_sysctl(), so that it can

--- 41 unchanged lines hidden ---
319/*
320 * CTL_DEBUG variables.
321 *
322 * These are declared as separate variables so that they can be
323 * individually initialized at the location of their associated
324 * variable. The loader prevents multiple use by issuing errors
325 * if a variable is initialized in more than one place. They are
326 * aggregated into an array in debug_sysctl(), so that it can

--- 41 unchanged lines hidden ---