From: José Bollo Date: Wed, 25 Apr 2018 14:48:58 +0000 (+0200) Subject: afb-hook: Refactor timestamps of hooks and trace X-Git-Tag: flounder_5.99.1~26 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=95ee37b3cdb38efc4e77d072d00c7fc46b203d24 afb-hook: Refactor timestamps of hooks and trace Change-Id: Iebcab280123d1f954eda3b1260d0b984ae3a98b5 Signed-off-by: José Bollo --- 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); }