aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Silbersack <silby@FreeBSD.org>2003-10-21 16:48:33 +0000
committerMike Silbersack <silby@FreeBSD.org>2003-10-21 16:48:33 +0000
commitbd6fb64bb3b9f178e5d707daa2119f98c952f04d (patch)
tree907b49af9c52455b1d1ec64d2216d34219b06896
parentaa6a0037e212109fe0cb5e3ea2e7feb6a71bf85d (diff)
Notes
-rw-r--r--sys/sys/sysctl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index b570b8c3b4512..ed20e5030984b 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -87,6 +87,8 @@ struct ctlname {
#define CTLFLAG_DYN 0x02000000 /* Dynamic oid - can be freed */
#define CTLFLAG_SKIP 0x01000000 /* Skip this sysctl when listing */
#define CTLMASK_SECURE 0x00F00000 /* Secure level */
+#define CTLFLAG_TUN 0x00080000 /* Tunable variable */
+#define CTLFLAG_RDTUN (CTLFLAG_RD|CTLFLAG_TUN)
/*
* Secure level. Note that CTLFLAG_SECURE == CTLFLAG_SECURE1.