mirror of
https://github.com/openvswitch/ovs
synced 2025-09-03 07:45:30 +00:00
timeval: New function xclock_gettime().
Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ed Maste <emaste@freebsd.org>
This commit is contained in:
@@ -207,7 +207,7 @@ static void
|
|||||||
refresh_wall(void)
|
refresh_wall(void)
|
||||||
{
|
{
|
||||||
time_init();
|
time_init();
|
||||||
clock_gettime(CLOCK_REALTIME, &wall_time);
|
xclock_gettime(CLOCK_REALTIME, &wall_time);
|
||||||
wall_tick = false;
|
wall_tick = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -218,7 +218,7 @@ refresh_monotonic(void)
|
|||||||
|
|
||||||
if (!time_stopped) {
|
if (!time_stopped) {
|
||||||
if (monotonic_clock == CLOCK_MONOTONIC) {
|
if (monotonic_clock == CLOCK_MONOTONIC) {
|
||||||
clock_gettime(monotonic_clock, &monotonic_time);
|
xclock_gettime(monotonic_clock, &monotonic_time);
|
||||||
} else {
|
} else {
|
||||||
refresh_wall_if_ticked();
|
refresh_wall_if_ticked();
|
||||||
monotonic_time = wall_time;
|
monotonic_time = wall_time;
|
||||||
@@ -460,6 +460,16 @@ xgettimeofday(struct timeval *tv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
xclock_gettime(clock_t id, struct timespec *ts)
|
||||||
|
{
|
||||||
|
if (clock_gettime(id, ts) == -1) {
|
||||||
|
/* It seems like a bad idea to try to use vlog here because it is
|
||||||
|
* likely to try to check the current time. */
|
||||||
|
ovs_abort(errno, "xclock_gettime() failed");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static long long int
|
static long long int
|
||||||
timeval_diff_msec(const struct timeval *a, const struct timeval *b)
|
timeval_diff_msec(const struct timeval *a, const struct timeval *b)
|
||||||
{
|
{
|
||||||
|
@@ -73,6 +73,7 @@ long long int timespec_to_msec(const struct timespec *);
|
|||||||
long long int timeval_to_msec(const struct timeval *);
|
long long int timeval_to_msec(const struct timeval *);
|
||||||
|
|
||||||
void xgettimeofday(struct timeval *);
|
void xgettimeofday(struct timeval *);
|
||||||
|
void xclock_gettime(clock_t, struct timespec *);
|
||||||
|
|
||||||
int get_cpu_usage(void);
|
int get_cpu_usage(void);
|
||||||
void format_backtraces(struct ds *, size_t min_count);
|
void format_backtraces(struct ds *, size_t min_count);
|
||||||
|
Reference in New Issue
Block a user