Deleted Added
full compact
sysctl.9 (158130) sysctl.9 (161253)
1.\"
2.\" Copyright (c) 2006 Robert N. M. Watson
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright

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

18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24.\" SUCH DAMAGE.
25.\"
1.\"
2.\" Copyright (c) 2006 Robert N. M. Watson
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright

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

18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24.\" SUCH DAMAGE.
25.\"
26.\" $FreeBSD: head/share/man/man9/sysctl.9 158130 2006-04-28 23:21:36Z keramida $
26.\" $FreeBSD: head/share/man/man9/sysctl.9 161253 2006-08-12 20:09:33Z obrien $
27.\"
28.Dd April 28, 2006
29.Dt SYSCTL 9
30.Os
31.Sh NAME
32.Nm SYSCTL_DECL ,
33.Nm SYSCTL_INT ,
34.Nm SYSCTL_LONG ,

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

189This is an unsigned long.
190.El
191.Pp
192All sysctl types except for new node declarations require one or more flags
193to be set indicating the read and write disposition of the sysctl:
194.Bl -tag -width CTLFLAG_ANYBODY
195.It Dv CTLFLAG_RD
196This is a read-only sysctl.
27.\"
28.Dd April 28, 2006
29.Dt SYSCTL 9
30.Os
31.Sh NAME
32.Nm SYSCTL_DECL ,
33.Nm SYSCTL_INT ,
34.Nm SYSCTL_LONG ,

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

189This is an unsigned long.
190.El
191.Pp
192All sysctl types except for new node declarations require one or more flags
193to be set indicating the read and write disposition of the sysctl:
194.Bl -tag -width CTLFLAG_ANYBODY
195.It Dv CTLFLAG_RD
196This is a read-only sysctl.
197It Dv CTLFLAG_WR
197.It Dv CTLFLAG_WR
198This is a writable sysctl.
199.It Dv CTLFLAG_RW
200This sysctl is readable and writable.
201.It Dv CTLFLAG_ANYBODY
202Any user or process can write to this sysctl.
203.It Dv CTLFLAG_SECURE
204This sysctl can be written to only if the effective securelevel of the
205process is <= 0.

--- 138 unchanged lines hidden ---
198This is a writable sysctl.
199.It Dv CTLFLAG_RW
200This sysctl is readable and writable.
201.It Dv CTLFLAG_ANYBODY
202Any user or process can write to this sysctl.
203.It Dv CTLFLAG_SECURE
204This sysctl can be written to only if the effective securelevel of the
205process is <= 0.

--- 138 unchanged lines hidden ---