Deleted Added
full compact
kern_sysctl.c (2903) kern_sysctl.c (2946)
1/*-
2 * Copyright (c) 1982, 1986, 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 * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
1/*-
2 * Copyright (c) 1982, 1986, 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 * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
37 * $Id: kern_sysctl.c,v 1.12 1994/09/18 20:39:48 wollman Exp $
37 * $Id: kern_sysctl.c,v 1.13 1994/09/19 21:07:00 ache Exp $
38 */
39
40/*
41 * sysctl system call.
42 */
43
44#include <sys/param.h>
45#include <sys/systm.h>

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

115 fn = hw_sysctl;
116 break;
117 case CTL_VM:
118 fn = vm_sysctl;
119 break;
120 case CTL_NET:
121 fn = net_sysctl;
122 break;
38 */
39
40/*
41 * sysctl system call.
42 */
43
44#include <sys/param.h>
45#include <sys/systm.h>

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

115 fn = hw_sysctl;
116 break;
117 case CTL_VM:
118 fn = vm_sysctl;
119 break;
120 case CTL_NET:
121 fn = net_sysctl;
122 break;
123#ifdef notyet
124 case CTL_FS:
125 fn = fs_sysctl;
126 break;
123 case CTL_FS:
124 fn = fs_sysctl;
125 break;
127#endif
128 case CTL_MACHDEP:
129 fn = cpu_sysctl;
130 break;
131#ifdef DEBUG
132 case CTL_DEBUG:
133 fn = debug_sysctl;
134 break;
135#endif

--- 697 unchanged lines hidden ---
126 case CTL_MACHDEP:
127 fn = cpu_sysctl;
128 break;
129#ifdef DEBUG
130 case CTL_DEBUG:
131 fn = debug_sysctl;
132 break;
133#endif

--- 697 unchanged lines hidden ---