diff options
-rw-r--r-- | sys/sys/ktr.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/ktr.h b/sys/sys/ktr.h index 9ac8f5a..1d6e4a1 100644 --- a/sys/sys/ktr.h +++ b/sys/sys/ktr.h @@ -76,8 +76,9 @@ #define KTR_CALLOUT 0x02000000 /* Callouts and timeouts */ #define KTR_GEOM 0x04000000 /* GEOM I/O events */ #define KTR_BUSDMA 0x08000000 /* busdma(9) events */ -#define KTR_CRITICAL 0010000000 /* Critical sections */ -#define KTR_ALL 0x1fffffff +#define KTR_CRITICAL 0x10000000 /* Critical sections */ +#define KTR_SCHED 0x20000000 /* Machine parsed sched info. */ +#define KTR_ALL 0x3fffffff /* * Trace classes which can be assigned to particular use at compile time |