From 95ee37b3cdb38efc4e77d072d00c7fc46b203d24 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Wed, 25 Apr 2018 16:48:58 +0200 Subject: [PATCH] afb-hook: Refactor timestamps of hooks and trace MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Iebcab280123d1f954eda3b1260d0b984ae3a98b5 Signed-off-by: José Bollo --- src/afb-hook.c | 2 +- src/afb-trace.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/afb-hook.c b/src/afb-hook.c index a3748342..83ffb5f8 100644 --- a/src/afb-hook.c +++ b/src/afb-hook.c @@ -144,7 +144,7 @@ static unsigned next_hookid = 0; static void init_hookid(struct afb_hookid *hookid) { hookid->id = __atomic_add_fetch(&next_hookid, 1, __ATOMIC_RELAXED); - clock_gettime(CLOCK_MONOTONIC, &hookid->time); + clock_gettime(CLOCK_REALTIME, &hookid->time); } /****************************************************************************** diff --git a/src/afb-trace.c b/src/afb-trace.c index 5404a5af..f5f9c19e 100644 --- a/src/afb-trace.c +++ b/src/afb-trace.c @@ -168,7 +168,7 @@ static struct json_object *timestamp(const struct afb_hookid *hookid) { char ts[50]; - snprintf(ts, sizeof ts, "%llu.%06lu", (long long unsigned)hookid->time.tv_sec, (long unsigned)(hookid->time.tv_nsec / 1000)); + snprintf(ts, sizeof ts, "%llu.%09llu", (long long unsigned)hookid->time.tv_sec, (long long unsigned)hookid->time.tv_nsec); return json_object_new_string(ts); } -- 2.16.6