Document the KTR_VERBOSE option.

This commit is contained in:
John Baldwin 2000-11-07 01:50:10 +00:00
parent d8f03321bd
commit d902baa4ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68421
2 changed files with 8 additions and 2 deletions

View file

@ -339,7 +339,9 @@ options KTRACE #kernel tracing
# as defined by the KTR_* constants in <sys/ktr.h>. KTR_MASK defines the
# initial value of the ktr_mask variable which determines at runtime what
# events to trace. KTR_CPUMASK determines which CPU's log events, with
# bit X corresponding to cpu X.
# bit X corresponding to cpu X. KTR_VERBOSE enables dumping of KTR events
# to the console by default. This functionality can be toggled via the
# debug.ktr_verbose sysctl and defaults to off if KTR_VERBOSE is not defined.
#
options KTR
options KTR_EXTEND
@ -347,6 +349,7 @@ options KTR_ENTRIES=1024
options KTR_COMPILE=0x3fffff
options KTR_MASK=0x201208
options KTR_CPUMASK=0x3
options KTR_VERBOSE
#
# The INVARIANTS option is used in a number of source files to enable

View file

@ -339,7 +339,9 @@ options KTRACE #kernel tracing
# as defined by the KTR_* constants in <sys/ktr.h>. KTR_MASK defines the
# initial value of the ktr_mask variable which determines at runtime what
# events to trace. KTR_CPUMASK determines which CPU's log events, with
# bit X corresponding to cpu X.
# bit X corresponding to cpu X. KTR_VERBOSE enables dumping of KTR events
# to the console by default. This functionality can be toggled via the
# debug.ktr_verbose sysctl and defaults to off if KTR_VERBOSE is not defined.
#
options KTR
options KTR_EXTEND
@ -347,6 +349,7 @@ options KTR_ENTRIES=1024
options KTR_COMPILE=0x3fffff
options KTR_MASK=0x201208
options KTR_CPUMASK=0x3
options KTR_VERBOSE
#
# The INVARIANTS option is used in a number of source files to enable