Use bitmasks of the KTR_* constants instead of hexidecimal values for

the KTR_COMPILE and KTR_MASK examples.
This commit is contained in:
John Baldwin 2001-06-04 18:26:02 +00:00
parent 75fd8a701b
commit a9672a8144
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=77713
2 changed files with 4 additions and 4 deletions

View file

@ -339,8 +339,8 @@ options KTRACE #kernel tracing
options KTR
options KTR_EXTEND
options KTR_ENTRIES=1024
options KTR_COMPILE=0x3fffff
options KTR_MASK=0x201208
options KTR_COMPILE=KTR_INTR|KTR_PROC
options KTR_MASK=KTR_INTR
options KTR_CPUMASK=0x3
options KTR_VERBOSE

View file

@ -339,8 +339,8 @@ options KTRACE #kernel tracing
options KTR
options KTR_EXTEND
options KTR_ENTRIES=1024
options KTR_COMPILE=0x3fffff
options KTR_MASK=0x201208
options KTR_COMPILE=KTR_INTR|KTR_PROC
options KTR_MASK=KTR_INTR
options KTR_CPUMASK=0x3
options KTR_VERBOSE