+(4.2.5p182) 2009/06/18 Released by Harlan Stenn <stenn@ntp.org>
* Add missing header dependencies to the ntpdc layout verification.
* prefer.html updates from Dave Mills.
* [Bug 1205] Add ntpd --usepcc and --pccfreq options on Windows
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.c)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:51:38 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:58:30 AM EDT
* From the definitions sntp-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "SNTP";
tSCC zUsageTitle[] =
-"sntp - standard SNTP program - Ver. 4.2.5p181\n\
+"sntp - standard SNTP program - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... ...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.h)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:51:38 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:58:30 AM EDT
* From the definitions sntp-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 17
-#define SNTP_VERSION "4.2.5p181"
-#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p181"
+#define SNTP_VERSION "4.2.5p182"
+#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (sntp-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:51:41 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:58:32 AM EDT
# From the definitions sntp-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH SNTP 1 2009-06-06 "( 4.2.5p181)" "Programmer's Manual"
+.TH SNTP 1 2009-06-18 "( 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (sntp.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:51:40 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:58:31 AM EDT
.\" From the definitions sntp-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntpd-opts.c)
*
- * It has been AutoGen-ed Thursday June 11, 2009 at 11:04:39 PM UTC
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:45:27 AM EDT
* From the definitions ntpd-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPD";
tSCC zUsageTitle[] =
-"ntpd - NTP daemon program - Ver. 4.2.5p181\n\
+"ntpd - NTP daemon program - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
#define zRcName NULL
#define apzHomeList NULL
/*
* EDIT THIS FILE WITH CAUTION (ntpd-opts.h)
*
- * It has been AutoGen-ed Thursday June 11, 2009 at 11:04:34 PM UTC
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:45:26 AM EDT
* From the definitions ntpd-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 34
-#define NTPD_VERSION "4.2.5p181"
-#define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.5p181"
+#define NTPD_VERSION "4.2.5p182"
+#define NTPD_FULL_VERSION "ntpd - NTP daemon program - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpd-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:38:44 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:45:29 AM EDT
# From the definitions ntpd-opts.def
# and the template file aginfo.tpl
@end ignore
* ntpd nofork:: nofork option (-n)
* ntpd novirtualips:: novirtualips option (-L)
* ntpd panicgate:: panicgate option (-g)
+* ntpd pccfreq:: pccfreq option
* ntpd pidfile:: pidfile option (-p)
* ntpd priority:: priority option (-P)
* ntpd propagationdelay:: propagationdelay option (-r)
* ntpd statsdir:: statsdir option (-s)
* ntpd trustedkey:: trustedkey option (-t)
* ntpd updateinterval:: updateinterval option (-U)
+* ntpd usepcc:: usepcc option
* ntpd user:: user option (-u)
* ntpd var:: var option
@end menu
@exampleindent 0
@example
-ntpd - NTP daemon program - Ver. 4.2.5p179
+ntpd - NTP daemon program - Ver. 4.2.5p181
USAGE: ntpd [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]...
Flg Arg Option-Name Description
-4 no ipv4 Force IPv4 DNS name resolution
tinker
configuration file directive for other options.
Note: The kernel time discipline is disabled with this option.
+
+@node ntpd usepcc
+@subsection usepcc option
+@cindex ntpd-usepcc
+
+This is the ``use cpu cycle counter (windows only)'' option.
+
+This option has some usage constraints. It:
+@itemize @bullet
+@item
+must be compiled in by defining @code{SYS_WINNT} during the compilation.
+@end itemize
+
+Attempt to substitute the CPU counter for QueryPerformanceCounter.
+The CPU counter and QueryPerformanceCounter are compared, and if
+they have the same frequency, the CPU counter (RDTSC on x86) is
+used directly, saving the overhead of a system call.
+
+@node ntpd pccfreq
+@subsection pccfreq option
+@cindex ntpd-pccfreq
+
+This is the ``force cpu cycle counter use (windows only)'' option.
+
+This option has some usage constraints. It:
+@itemize @bullet
+@item
+must be compiled in by defining @code{SYS_WINNT} during the compilation.
+@end itemize
+
+Force substitution the CPU counter for QueryPerformanceCounter.
+The CPU counter (RDTSC on x86) is used unconditionally with the
+given frequency (in Hz).
-.TH NTPD 1 2009-06-06 "( 4.2.5p181)" "Programmer's Manual"
+.TH NTPD 1 2009-06-18 "( 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpd.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:38:42 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:45:28 AM EDT
.\" From the definitions ntpd-opts.def
.\" and the template file agman1.tpl
.\"
configuration file directive for other options.
Note: The kernel time discipline is disabled with this option.
.TP
+.BR \--usepcc
+Use CPU cycle counter (Windows only).
+.sp
+Attempt to substitute the CPU counter for QueryPerformanceCounter.
+The CPU counter and QueryPerformanceCounter are compared, and if
+they have the same frequency, the CPU counter (RDTSC on x86) is
+used directly, saving the overhead of a system call.
+.TP
+.BR \--pccfreq "=\fIstring\fP"
+Force CPU cycle counter use (Windows only).
+.sp
+Force substitution the CPU counter for QueryPerformanceCounter.
+The CPU counter (RDTSC on x86) is used unconditionally with the
+given frequency (in Hz).
+.TP
.BR \-? , " \--help"
Display usage information and exit.
.TP
/*
* EDIT THIS FILE WITH CAUTION (ntpdc-opts.c)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:45:30 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:52:14 AM EDT
* From the definitions ntpdc-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPDC";
tSCC zUsageTitle[] =
-"ntpdc - vendor-specific NTP query program - Ver. 4.2.5p181\n\
+"ntpdc - vendor-specific NTP query program - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntpdc-opts.h)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:45:29 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:52:13 AM EDT
* From the definitions ntpdc-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 15
-#define NTPDC_VERSION "4.2.5p181"
-#define NTPDC_FULL_VERSION "ntpdc - vendor-specific NTP query program - Ver. 4.2.5p181"
+#define NTPDC_VERSION "4.2.5p182"
+#define NTPDC_FULL_VERSION "ntpdc - vendor-specific NTP query program - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpdc-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:45:31 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:52:15 AM EDT
# From the definitions ntpdc-opts.def
# and the template file aginfo.tpl
@end ignore
@exampleindent 0
@example
-ntpdc - vendor-specific NTP query program - Ver. 4.2.5p179
+ntpdc - vendor-specific NTP query program - Ver. 4.2.5p181
USAGE: ntpdc [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... [ host ...]
Flg Arg Option-Name Description
-4 no ipv4 Force IPv4 DNS name resolution
-.TH NTPDC 1 2009-06-06 "( 4.2.5p181)" "Programmer's Manual"
+.TH NTPDC 1 2009-06-18 "( 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpdc.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:45:30 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:52:14 AM EDT
.\" From the definitions ntpdc-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntpq-opts.c)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:45:59 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:52:44 AM EDT
* From the definitions ntpq-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPQ";
tSCC zUsageTitle[] =
-"ntpq - standard NTP query program - Ver. 4.2.5p181\n\
+"ntpq - standard NTP query program - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ host ...]\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntpq-opts.h)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:45:59 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:52:44 AM EDT
* From the definitions ntpq-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 13
-#define NTPQ_VERSION "4.2.5p181"
-#define NTPQ_FULL_VERSION "ntpq - standard NTP query program - Ver. 4.2.5p181"
+#define NTPQ_VERSION "4.2.5p182"
+#define NTPQ_FULL_VERSION "ntpq - standard NTP query program - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpq-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:46:01 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:52:47 AM EDT
# From the definitions ntpq-opts.def
# and the template file aginfo.tpl
@end ignore
@exampleindent 0
@example
-ntpq - standard NTP query program - Ver. 4.2.5p179
+ntpq - standard NTP query program - Ver. 4.2.5p181
USAGE: ntpq [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... [ host ...]
Flg Arg Option-Name Description
-4 no ipv4 Force IPv4 DNS name resolution
-.TH NTPQ 1 2009-06-06 "( 4.2.5p181)" "Programmer's Manual"
+.TH NTPQ 1 2009-06-18 "( 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpq.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:46:00 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:52:46 AM EDT
.\" From the definitions ntpq-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.c)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:46:46 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:53:29 AM EDT
* From the definitions ntpsnmpd-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTPSNMPD";
tSCC zUsageTitle[] =
-"ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p181\n\
+"ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> | --<name> ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.h)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:46:46 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:53:29 AM EDT
* From the definitions ntpsnmpd-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 7
-#define NTPSNMPD_VERSION "4.2.5p181"
-#define NTPSNMPD_FULL_VERSION "ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p181"
+#define NTPSNMPD_VERSION "4.2.5p182"
+#define NTPSNMPD_FULL_VERSION "ntpsnmpd - NTP SNMP MIB agent - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntpsnmpd-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:46:48 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:53:31 AM EDT
# From the definitions ntpsnmpd-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH NTPSNMPD 1 2009-06-06 "( 4.2.5p181)" "Programmer's Manual"
+.TH NTPSNMPD 1 2009-06-18 "( 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntpsnmpd.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:46:48 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:53:31 AM EDT
.\" From the definitions ntpsnmpd-opts.def
.\" and the template file agman1.tpl
.\"
# - Numeric values increment
# - empty 'increments' to 1
# - NEW 'increments' to empty
-point=181
+point=182
# Special. Normally unused. A suffix.
#special=ag
special=
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.c)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:52:37 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:59:28 AM EDT
* From the definitions sntp-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "SNTP";
tSCC zUsageTitle[] =
-"sntp - standard SNTP program - Ver. 4.2.5p181\n\
+"sntp - standard SNTP program - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> | --<name> ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (sntp-opts.h)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:52:36 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:59:27 AM EDT
* From the definitions sntp-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 13
-#define SNTP_VERSION "4.2.5p181"
-#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p181"
+#define SNTP_VERSION "4.2.5p182"
+#define SNTP_FULL_VERSION "sntp - standard SNTP program - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (sntp-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:52:39 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:59:30 AM EDT
# From the definitions sntp-opts.def
# and the template file aginfo.tpl
@end ignore
-.TH SNTP 1 2009-06-06 "( 4.2.5p181)" "Programmer's Manual"
+.TH SNTP 1 2009-06-18 "( 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (sntp.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:52:38 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:59:29 AM EDT
.\" From the definitions sntp-opts.def
.\" and the template file agman1.tpl
.\"
/*
* EDIT THIS FILE WITH CAUTION (ntp-keygen-opts.c)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:52:46 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:59:38 AM EDT
* From the definitions ntp-keygen-opts.def
* and the template file options
*
*/
tSCC zPROGNAME[] = "NTP_KEYGEN";
tSCC zUsageTitle[] =
-"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p181\n\
+"ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p182\n\
USAGE: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n";
tSCC zRcName[] = ".ntprc";
tSCC* apzHomeList[] = {
/*
* EDIT THIS FILE WITH CAUTION (ntp-keygen-opts.h)
*
- * It has been AutoGen-ed Saturday June 6, 2009 at 07:52:45 AM EDT
+ * It has been AutoGen-ed Thursday June 18, 2009 at 07:59:37 AM EDT
* From the definitions ntp-keygen-opts.def
* and the template file options
*
} teOptIndex;
#define OPTION_CT 23
-#define NTP_KEYGEN_VERSION "4.2.5p181"
-#define NTP_KEYGEN_FULL_VERSION "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p181"
+#define NTP_KEYGEN_VERSION "4.2.5p182"
+#define NTP_KEYGEN_FULL_VERSION "ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p182"
/*
* Interface defines for all options. Replace "n" with the UPPER_CASED
#
# EDIT THIS FILE WITH CAUTION (ntp-keygen-opts.texi)
#
-# It has been AutoGen-ed Saturday June 6, 2009 at 07:52:48 AM EDT
+# It has been AutoGen-ed Thursday June 18, 2009 at 07:59:40 AM EDT
# From the definitions ntp-keygen-opts.def
# and the template file aginfo.tpl
@end ignore
@exampleindent 0
@example
Using OpenSSL version 90704f
-ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p179
+ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.5p181
USAGE: ntp-keygen [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]...
Flg Arg Option-Name Description
-c Str certificate certificate scheme
-.TH NTP-KEYGEN 1 2009-06-06 "(ntp 4.2.5p181)" "Programmer's Manual"
+.TH NTP-KEYGEN 1 2009-06-18 "(ntp 4.2.5p182)" "Programmer's Manual"
.\" EDIT THIS FILE WITH CAUTION (ntp-keygen.1)
.\"
-.\" It has been AutoGen-ed Saturday June 6, 2009 at 07:52:47 AM EDT
+.\" It has been AutoGen-ed Thursday June 18, 2009 at 07:59:39 AM EDT
.\" From the definitions ntp-keygen-opts.def
.\" and the template file agman1.tpl
.\"