summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/afb-hook.c2
-rw-r--r--src/afb-trace.c2
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);
}