Deleted Added
full compact
sysctl.h (129597) sysctl.h (130585)
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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)sysctl.h 8.1 (Berkeley) 6/2/93
33 * $FreeBSD: head/sys/sys/sysctl.h 129597 2004-05-22 23:08:49Z gad $
33 * $FreeBSD: head/sys/sys/sysctl.h 130585 2004-06-16 09:47:26Z phk $
34 */
35
36#ifndef _SYS_SYSCTL_H_
37#define _SYS_SYSCTL_H_
38
39#include <sys/queue.h>
40
41struct thread;

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

346#define KERN_BOOTTIME 21 /* struct: time kernel was booted */
347#define KERN_NISDOMAINNAME 22 /* string: YP domain name */
348#define KERN_UPDATEINTERVAL 23 /* int: update process sleep time */
349#define KERN_OSRELDATE 24 /* int: kernel release date */
350#define KERN_NTP_PLL 25 /* node: NTP PLL control */
351#define KERN_BOOTFILE 26 /* string: name of booted kernel */
352#define KERN_MAXFILESPERPROC 27 /* int: max open files per proc */
353#define KERN_MAXPROCPERUID 28 /* int: max processes per uid */
34 */
35
36#ifndef _SYS_SYSCTL_H_
37#define _SYS_SYSCTL_H_
38
39#include <sys/queue.h>
40
41struct thread;

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

346#define KERN_BOOTTIME 21 /* struct: time kernel was booted */
347#define KERN_NISDOMAINNAME 22 /* string: YP domain name */
348#define KERN_UPDATEINTERVAL 23 /* int: update process sleep time */
349#define KERN_OSRELDATE 24 /* int: kernel release date */
350#define KERN_NTP_PLL 25 /* node: NTP PLL control */
351#define KERN_BOOTFILE 26 /* string: name of booted kernel */
352#define KERN_MAXFILESPERPROC 27 /* int: max open files per proc */
353#define KERN_MAXPROCPERUID 28 /* int: max processes per uid */
354#define KERN_DUMPDEV 29 /* dev_t: device to dump on */
354#define KERN_DUMPDEV 29 /* struct cdev *: device to dump on */
355#define KERN_IPC 30 /* node: anything related to IPC */
356#define KERN_DUMMY 31 /* unused */
357#define KERN_PS_STRINGS 32 /* int: address of PS_STRINGS */
358#define KERN_USRSTACK 33 /* int: address of USRSTACK */
359#define KERN_LOGSIGEXIT 34 /* int: do we log sigexit procs? */
360#define KERN_IOV_MAX 35 /* int: value of UIO_MAXIOV */
361#define KERN_MAXID 36 /* number of valid kern ids */
362

--- 276 unchanged lines hidden ---
355#define KERN_IPC 30 /* node: anything related to IPC */
356#define KERN_DUMMY 31 /* unused */
357#define KERN_PS_STRINGS 32 /* int: address of PS_STRINGS */
358#define KERN_USRSTACK 33 /* int: address of USRSTACK */
359#define KERN_LOGSIGEXIT 34 /* int: do we log sigexit procs? */
360#define KERN_IOV_MAX 35 /* int: value of UIO_MAXIOV */
361#define KERN_MAXID 36 /* number of valid kern ids */
362

--- 276 unchanged lines hidden ---