aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-04-30 19:34:31 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-04-30 19:34:31 +0000
commit2266fe776ef45450c09017ef1df30b5fff755d00 (patch)
treefdcf6d66bdb04893e3f03361cbfb50627318e3d7 /sys/alpha
parente6728403d493abddf47be54cd6cec240988c901f (diff)
downloadsrc-2266fe776ef45450c09017ef1df30b5fff755d00.tar.gz
src-2266fe776ef45450c09017ef1df30b5fff755d00.zip
Don't export timecounter structures under debug. with sysctl, they
contain no truly interesting data anymore.
Notes
Notes: svn path=/head/; revision=95814
Diffstat (limited to 'sys/alpha')
-rw-r--r--sys/alpha/alpha/clock.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/alpha/alpha/clock.c b/sys/alpha/alpha/clock.c
index cc6bb7b8b88c..825b91480448 100644
--- a/sys/alpha/alpha/clock.c
+++ b/sys/alpha/alpha/clock.c
@@ -124,9 +124,6 @@ static struct timecounter alpha_timecounter = {
"alpha" /* name */
};
-SYSCTL_OPAQUE(_debug, OID_AUTO, alpha_timecounter, CTLFLAG_RD,
- &alpha_timecounter, sizeof(alpha_timecounter), "S,timecounter", "");
-
static struct timecounter i8254_timecounter = {
i8254_get_timecount, /* get_timecount */
0, /* no poll_pps */
@@ -135,9 +132,6 @@ static struct timecounter i8254_timecounter = {
"i8254" /* name */
};
-SYSCTL_OPAQUE(_debug, OID_AUTO, i8254_timecounter, CTLFLAG_RD,
- &i8254_timecounter, sizeof(i8254_timecounter), "S,timecounter", "");
-
/* Values for timerX_state: */
#define RELEASED 0
#define RELEASE_PENDING 1