[Midnightbsd-cvs] src [11670] U trunk/tools/tools/sysdoc/tunables.mdoc: update
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Jul 8 16:09:03 EDT 2018
Revision: 11670
http://svnweb.midnightbsd.org/src/?rev=11670
Author: laffer1
Date: 2018-07-08 16:09:03 -0400 (Sun, 08 Jul 2018)
Log Message:
-----------
update
Modified Paths:
--------------
trunk/tools/tools/sysdoc/Makefile
trunk/tools/tools/sysdoc/sysdoc.sh
trunk/tools/tools/sysdoc/tunables.mdoc
Property Changed:
----------------
trunk/tools/tools/sysdoc/sysdoc.sh
trunk/tools/tools/sysdoc/tunables.mdoc
Modified: trunk/tools/tools/sysdoc/Makefile
===================================================================
--- trunk/tools/tools/sysdoc/Makefile 2018-07-08 20:07:40 UTC (rev 11669)
+++ trunk/tools/tools/sysdoc/Makefile 2018-07-08 20:09:03 UTC (rev 11670)
@@ -1,4 +1,5 @@
-# $FreeBSD: src/tools/tools/sysdoc/Makefile,v 1.1 2005/03/01 05:48:37 trhodes Exp $
+# $MidnightBSD$
+# $FreeBSD: stable/10/tools/tools/sysdoc/Makefile 241828 2012-10-22 02:12:11Z eadler $
sysctl.5:
sh ${.CURDIR}/sysdoc.sh -k /boot/kernel
Modified: trunk/tools/tools/sysdoc/sysdoc.sh
===================================================================
--- trunk/tools/tools/sysdoc/sysdoc.sh 2018-07-08 20:07:40 UTC (rev 11669)
+++ trunk/tools/tools/sysdoc/sysdoc.sh 2018-07-08 20:09:03 UTC (rev 11670)
@@ -1,7 +1,7 @@
#!/bin/sh
#
-# $FreeBSD: src/tools/tools/sysdoc/sysdoc.sh,v 1.1 2005/03/01 05:48:37 trhodes Exp $
-#
+# $FreeBSD: stable/10/tools/tools/sysdoc/sysdoc.sh 307403 2016-10-16 22:02:50Z sevan $
+# $MidnightBSD$
#################################################################
# Missing Features:
# It would be nice to have OIDs separated into composite groups
@@ -59,12 +59,12 @@
This manual page is automatically generated
by a set of scripts written by
.An -nosplit
-.An Tom Rhodes Aq trhodes at FreeBSD.org ,
+.An Tom Rhodes Aq Mt trhodes at FreeBSD.org ,
with significant contributions from
-.An Giorgos Keramidas Aq keramida at FreeBSD.org ,
-.An Ruslan Ermilov Aq ru at FreeBSD.org ,
+.An Giorgos Keramidas Aq Mt keramida at FreeBSD.org ,
+.An Ruslan Ermilov Aq Mt ru at FreeBSD.org ,
and
-.An Marc Silver Aq marcs at draenor.org .
+.An Marc Silver Aq Mt marcs at draenor.org .
.Sh BUGS
Sometimes
.Fx
@@ -88,7 +88,7 @@
# tunables in our tunables.mdoc file and generate
# the final 'inner circle' of our manual page.
markup_create() {
- sort < _names | \
+ sort -u < _names | \
xargs -n 1 /bin/sh ./sysctl.sh \
> markup.file \
2> tunables.TODO
@@ -238,9 +238,13 @@
&& for x in `find $LOCATION -name '*.kld'` \
$LOCATION/kernel; \
do nm $x | \
- grep ' sysctl___' | uniq | \
- sed 's/sysctl___//g' | sed 's/_/./g' | \
- awk {'print $3'} > _names;
+ sed -n '/sysctl___/ {
+ 's/[\.a-z_]*sysctl___//g'
+ 's/_/./g'
+ p
+ }' | \
+ awk {'print $3'} | \
+ sort -u > _names;
done;
markup_create
page_create
Property changes on: trunk/tools/tools/sysdoc/sysdoc.sh
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/tools/tools/sysdoc/tunables.mdoc
===================================================================
--- trunk/tools/tools/sysdoc/tunables.mdoc 2018-07-08 20:07:40 UTC (rev 11669)
+++ trunk/tools/tools/sysdoc/tunables.mdoc 2018-07-08 20:09:03 UTC (rev 11670)
@@ -1,4 +1,5 @@
-# $FreeBSD: src/tools/tools/sysdoc/tunables.mdoc,v 1.1 2005/03/01 05:48:37 trhodes Exp $
+# $MidnightBSD$
+# $FreeBSD: stable/10/tools/tools/sysdoc/tunables.mdoc 254147 2013-08-09 15:31:50Z obrien $
---
debug.disablecwd
bool
@@ -1093,6 +1094,13 @@
kern.quantum
---
+kern.random.adaptors
+str
+
+Displays registered PRNG adaptors.
+This is a read-only variable.
+
+---
kern.random.sys.burst
---
@@ -1233,26 +1241,14 @@
machdep.guessed_bootdev
---
-machdep.hlt_cpus
+machdep.hyperthreading_allowed
bool
-This option will permit the halting
-of CPUs.
-For instance, to halt CPU 0,
-machdep.htl_cpus=1 can be used.
-It is possible to halt two CPUs by providing
-a comma separated list (i.e: cpu1,cpu2).
+Setting this tunable to zero disables
+the use of additional logical processors
+provided by Intel HTT technology.
---
-machdep.hlt_logical_cpus
-bool
-
-This keeps the logical CPUs halted in the idle loop.
-By default the logical CPUs are halted at startup.
-It is also possible to halt any cpu in the idle loop now
-using machdep.hlt_cpus.
-
----
machdep.panic_on_nmi
---
@@ -2271,9 +2267,6 @@
to the system. This is a read-only variable.
---
-vm.pageout_algorithm
-
----
vm.pageout_full_stats_interval
---
Property changes on: trunk/tools/tools/sysdoc/tunables.mdoc
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list