diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2000-11-20 00:44:58 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2000-11-20 00:44:58 +0000 |
| commit | 7f112b0489015958e3990c0015d114c69de53d29 (patch) | |
| tree | 9703c98060046e5a13dab2adc2b71d9bdaad50be | |
| parent | aa5429970c57a14d577f6a4b4c9ee6d57a680a3e (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_clock.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index b02158026312..223be915c229 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -76,6 +76,9 @@ SYSINIT(clocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, initclocks, NULL) /* Some of these don't belong here, but it's easiest to concentrate them. */ long cp_time[CPUSTATES]; +SYSCTL_OPAQUE(_kern, OID_AUTO, cp_time, CTLFLAG_RD, &cp_time, sizeof(cp_time), + "LU", "CPU time statistics"); + long tk_cancc; long tk_nin; long tk_nout; |
