afb-hook: Refactor timestamps of hooks and trace
[src/app-framework-binder.git] / src / afb-hook.c
index a374834..83ffb5f 100644 (file)
@@ -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);
 }
 
 /******************************************************************************