diff options
author | Mark Santcroos <marks@FreeBSD.org> | 2004-11-19 00:58:30 +0000 |
---|---|---|
committer | Mark Santcroos <marks@FreeBSD.org> | 2004-11-19 00:58:30 +0000 |
commit | 9b7fe7e497741c6d3208857b83f18ee79028bd88 (patch) | |
tree | 54999eaec17a315a31312aad03c71668094d9281 | |
parent | 15579150a4f6280114153846af8c959253ac499f (diff) |
Notes
-rw-r--r-- | sys/kern/kern_ntptime.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/kern/kern_ntptime.c b/sys/kern/kern_ntptime.c index 0d8d54ab2e5d..f999897d28d0 100644 --- a/sys/kern/kern_ntptime.c +++ b/sys/kern/kern_ntptime.c @@ -241,6 +241,13 @@ ntp_gettime1(struct ntptimeval *ntvp) ntvp->time_state = TIME_ERROR; } +/* + * ntp_gettime() - NTP user application interface + * + * See the timex.h header file for synopsis and API description. Note + * that the TAI offset is returned in the ntvtimeval.tai structure + * member. + */ #ifndef _SYS_SYSPROTO_H_ struct ntp_gettime_args { struct ntptimeval *ntvp; @@ -257,13 +264,6 @@ ntp_gettime(struct thread *td, struct ntp_gettime_args *uap) return (copyout(&ntv, uap->ntvp, sizeof(ntv))); } -/* - * ntp_gettime() - NTP user application interface - * - * See the timex.h header file for synopsis and API description. Note - * that the TAI offset is returned in the ntvtimeval.tai structure - * member. - */ static int ntp_sysctl(SYSCTL_HANDLER_ARGS) { |