Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
Typos
· 2ce9056c
Matt Selsky
authored
Oct 17, 2016
2ce9056c
pyntpq: point short form of commands at long forms
· 26e2280b
Matt Selsky
authored
Oct 17, 2016
26e2280b
Hide whitespace changes
Inline
Side-by-side
devel/tour.txt
View file @
26e2280b
...
...
@@ -179,7 +179,7 @@ nanosecond-precision and those with only microsecond precision;
internally, ntpd does all its calculations with nanosecond precision.
The clock_gettime(2) and clock_settime(2) calls are standardized in
POSIX; ntp_adjtime(2) is
not
not, exhibiting some variability in
POSIX; ntp_adjtime(2) is not, exhibiting some variability in
behavior across platforms (in particular as to whether it supports
nanosecond or microsecond precision).
...
...
@@ -195,7 +195,7 @@ Older BSD systems read the clock using gettimeofday(2)
(in POSIX but deprecated) and set it using settimeofday(2),
which was never standardized. Neither of these calls are still
used in NTPsec, though the equally ancient BSD adjtime(2) call
is on systems without kernel PLL support.
is
,
on systems without kernel PLL support.
Also, glibc (and possibly other C libraries) implement two other
related calls, ntp_gettime(3) and ntp_gettimex(3). These are not used
...
...
ntpq/pyntpq
View file @
26e2280b
...
...
@@ -616,7 +616,7 @@ usage: readlist [ assocID ]
def
do_rl
(
self
,
line
):
"
read the system or peer variables included in the variable list
"
pass
self
.
do_readlist
(
line
)
def
help_rl
(
self
):
sys
.
stdout
.
write
(
"""
\
...
...
@@ -676,7 +676,7 @@ usage: mreadlist assocIDlow assocIDhigh
def
do_mrl
(
self
,
line
):
"
read the peer variables in the variable list for multiple peers
"
pass
self
.
do_mreadlist
(
line
)
def
help_mrl
(
self
):
sys
.
stdout
.
write
(
"""
\
...
...
@@ -696,7 +696,7 @@ usage: mreadvar assocIDlow assocIDhigh [ name=value[,...] ]
def
do_mrv
(
self
,
line
):
"
read peer variables from multiple peers
"
pass
self
.
do_mreadvar
(
line
)
def
help_mrv
(
self
):
sys
.
stdout
.
write
(
"""
\
...
...
@@ -716,7 +716,7 @@ usage: clocklist [ assocID ]
def
do_cl
(
self
,
line
):
"
read the clock variables included in the variable list
"
pass
self
.
do_clocklist
(
line
)
def
help_cl
(
self
):
sys
.
stdout
.
write
(
"""
\
...
...
@@ -736,7 +736,7 @@ usage: clockvar [ assocID ] [ name=value[,...] ]
def
do_cv
(
self
,
line
):
"
read clock variables
"
pass
self
.
do_clockvar
(
line
)
def
help_cv
(
self
):
sys
.
stdout
.
write
(
"""
\
...
...