diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-12-12 17:13:14 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-12-13 10:47:32 +0000 |
commit | 2703a6bd8611726fa61118bf9c68a6e2ea0b9b22 (patch) | |
tree | 486308d120c71eb2797071145ab069cf32385412 | |
parent | 3b939e77f9f9ab27f8e8130c9805f5143a7e53fb (diff) |
afb-trace: Make real timestamps
The optimisation that represent the timestamp as
a fake double is not accurate in local context.
Bug-AGL: SPEC-2051
Change-Id: I285837251507a69ad210823020d0cf69ad5999f3
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/afb-trace.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/afb-trace.c b/src/afb-trace.c index aaa16352..ffb03059 100644 --- a/src/afb-trace.c +++ b/src/afb-trace.c @@ -148,18 +148,8 @@ static void ctxt_error(char **errors, const char *format, ...) /* timestamp */ static struct json_object *timestamp(const struct afb_hookid *hookid) { -#if JSON_C_MAJOR_VERSION > 0 || JSON_C_MINOR_VERSION >= 12 - char ts[50]; - - snprintf(ts, sizeof ts, "%llu.%06lu", - (long long unsigned)hookid->time.tv_sec, - (long unsigned)((hookid->time.tv_nsec + 500) / 1000)); - - return json_object_new_double_s(0.0f, ts); /* the real value isn't used */ -#else return json_object_new_double((double)hookid->time.tv_sec + (double)hookid->time.tv_nsec * .000000001); -#endif } /* verbosity level name or NULL */ |