X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Ftimeval.c;h=d24ba03f794a57dc4904291f304d6aecee5b6a0b;hb=693c4a01124ec5ad9253f8cfcfd99075a9d637f6;hp=3c46ed735f8a11fb96032abceb76d05ebacf9fcf;hpb=f54e56fc50259336d447c25929d6a30785c3d468;p=openvswitch diff --git a/lib/timeval.c b/lib/timeval.c index 3c46ed73..d24ba03f 100644 --- a/lib/timeval.c +++ b/lib/timeval.c @@ -27,21 +27,21 @@ #include "coverage.h" #include "fatal-signal.h" #include "util.h" - #include "vlog.h" -#define THIS_MODULE VLM_timeval -/* Initialized? */ -static bool inited; +VLOG_DEFINE_THIS_MODULE(timeval); /* The clock to use for measuring time intervals. This is CLOCK_MONOTONIC by * preference, but on systems that don't have a monotonic clock we fall back * to CLOCK_REALTIME. */ static clockid_t monotonic_clock; -/* Has a timer tick occurred? */ -static volatile sig_atomic_t wall_tick; -static volatile sig_atomic_t monotonic_tick; +/* Has a timer tick occurred? + * + * We initialize these to true to force time_init() to get called on the first + * call to time_msec() or another function that queries the current time. */ +static volatile sig_atomic_t wall_tick = true; +static volatile sig_atomic_t monotonic_tick = true; /* The current time, as of the last refresh. */ static struct timespec wall_time; @@ -61,19 +61,21 @@ static void unblock_sigalrm(const sigset_t *); static void log_poll_interval(long long int last_wakeup, const struct rusage *last_rusage); -/* Initializes the timetracking module. */ -void +/* Initializes the timetracking module. + * + * It is not necessary to call this function directly, because other time + * functions will call it automatically, but it doesn't hurt. */ +static void time_init(void) { + static bool inited; if (inited) { return; } + inited = true; coverage_init(); - inited = true; - time_refresh(); - if (!clock_gettime(CLOCK_MONOTONIC, &monotonic_time)) { monotonic_clock = CLOCK_MONOTONIC; } else { @@ -114,6 +116,7 @@ set_up_signal(int flags) void time_disable_restart(void) { + time_init(); set_up_signal(0); } @@ -123,6 +126,7 @@ time_disable_restart(void) void time_enable_restart(void) { + time_init(); set_up_signal(SA_RESTART); } @@ -160,6 +164,7 @@ time_postfork(void) static void refresh_wall(void) { + time_init(); clock_gettime(CLOCK_REALTIME, &wall_time); wall_tick = false; } @@ -340,7 +345,6 @@ sigalrm_handler(int sig_nr) static void refresh_wall_if_ticked(void) { - assert(inited); if (wall_tick) { refresh_wall(); } @@ -349,7 +353,6 @@ refresh_wall_if_ticked(void) static void refresh_monotonic_if_ticked(void) { - assert(inited); if (monotonic_tick) { refresh_monotonic(); } @@ -438,9 +441,9 @@ log_poll_interval(long long int last_wakeup, const struct rusage *last_rusage) rusage.ru_nivcsw - last_rusage->ru_nivcsw); } - /* Care should be taken in the value chosen for logging. Depending - * on the configuration, syslog can write changes synchronously, - * which can cause the coverage messages to take longer to log + /* Care should be taken in the value chosen for logging. Depending + * on the configuration, syslog can write changes synchronously, + * which can cause the coverage messages to take longer to log * than the processing delay that triggered it. */ coverage_log(VLL_INFO, true); }