Fix: babeltrace-log timestamps should be in nsec
[babeltrace.git] / converter / babeltrace-log.c
index 214871192b2e3034d90a16c5b99c0d8a1babea55..8ea64ab34daa437c9931f2e97cda44bb247d4868 100644 (file)
@@ -191,6 +191,11 @@ void write_event_header(struct ctf_stream_pos *pos, char *line,
                        }
                        *tlen = len + line - *tline;
                        *ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec;
+                       /*
+                        * Default CTF clock has 1GHz frequency. Convert
+                        * from usec to nsec.
+                        */
+                       *ts *= 1000;
                }
        }
        /* timestamp */
This page took 0.02269 seconds and 4 git commands to generate.