aboutsummaryrefslogtreecommitdiff
path: root/util-linux/hwclock.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-07 10:36:41 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-07 10:36:41 +0100
commit0c58cc706fff6a2a954e92ea271ce2b400dee60e (patch)
tree039eda8e69ca03af96d87b6824fd269f35ecc60f /util-linux/hwclock.c
parent6959f6bc23abb9057c3ed4330dad1bc8f4a1dd7a (diff)
downloadbusybox-0c58cc706fff6a2a954e92ea271ce2b400dee60e.tar.gz
hwclock: make commented-out code compilable
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/hwclock.c')
-rw-r--r--util-linux/hwclock.c55
1 files changed, 32 insertions, 23 deletions
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c
index 7f4c563e6..a8b0bdf93 100644
--- a/util-linux/hwclock.c
+++ b/util-linux/hwclock.c
@@ -23,7 +23,12 @@
* "time between hwclock was started and we saw CMOS tick" quantity.
* It's useless since hwclock is started at a random moment,
* thus the quantity is also random, useless. Showing 0.000000 does not
- * deprive us from any useful info. */
+ * deprive us from any useful info.
+ *
+ * SHOW_HWCLOCK_DIFF code in this file shows the difference between system
+ * and hw clock. It is useful, but not compatible with standard hwclock.
+ * Thus disabled.
+ */
#define SHOW_HWCLOCK_DIFF 0
@@ -40,13 +45,14 @@ static time_t read_rtc(const char **pp_rtcname, struct timeval *sys_tv, int utc)
rtc_read_tm(&tm, fd);
#if SHOW_HWCLOCK_DIFF
- int before;
- before = tm.tm_sec;
- while (1) {
- rtc_read_tm(&tm, fd);
- gettimeofday(sys_tv, NULL);
- if (before != tm.tm_sec)
- break;
+ {
+ int before = tm.tm_sec;
+ while (1) {
+ rtc_read_tm(&tm, fd);
+ gettimeofday(sys_tv, NULL);
+ if (before != tm.tm_sec)
+ break;
+ }
}
#endif
@@ -58,29 +64,32 @@ static time_t read_rtc(const char **pp_rtcname, struct timeval *sys_tv, int utc)
static void show_clock(const char **pp_rtcname, int utc)
{
+#if SHOW_HWCLOCK_DIFF
+ struct timeval sys_tv;
+#endif
time_t t;
char *cp;
t = read_rtc(pp_rtcname, &sys_tv, utc);
cp = ctime(&t);
strchrnul(cp, '\n')[0] = '\0';
+#if !SHOW_HWCLOCK_DIFF
printf("%s 0.000000 seconds\n", cp);
-
-#if SHOW_HWCLOCK_DIFF
- struct timeval sys_tv;
- long diff;
- diff = sys_tv.tv_sec - t;
- if (diff < 0 /*&& tv.tv_usec != 0*/) {
- /* Why? */
- /* diff >= 0 is ok: diff < 0, can't just use tv.tv_usec: */
- /* 45.520820 43.520820 */
- /* - 44.000000 - 45.000000 */
- /* = 0.520820 = -1.479180, not -2.520820! */
- diff++;
- /* should be 1000000 - tv.tv_usec, but then we must check tv.tv_usec != 0 */
- sys_tv.tv_usec = 999999 - sys_tv.tv_usec;
+#else
+ {
+ long diff = sys_tv.tv_sec - t;
+ if (diff < 0 /*&& tv.tv_usec != 0*/) {
+ /* Why? */
+ /* diff >= 0 is ok: diff < 0, can't just use tv.tv_usec: */
+ /* 45.520820 43.520820 */
+ /* - 44.000000 - 45.000000 */
+ /* = 0.520820 = -1.479180, not -2.520820! */
+ diff++;
+ /* should be 1000000 - tv.tv_usec, but then we must check tv.tv_usec != 0 */
+ sys_tv.tv_usec = 999999 - sys_tv.tv_usec;
+ }
+ printf("%s %ld.%06lu seconds\n", cp, diff, (unsigned long)sys_tv.tv_usec);
}
- printf("%s %ld.%06lu seconds\n", cp, diff, (unsigned long)sys_tv.tv_usec);
#endif
}