X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=lib%2Ftrace-collection.c;h=035d2dc2d78a77a596e1b0fce2d6e8ccc86f6c3c;hp=fa1497acbfc34897924b3e58fafda0a59c0cb6e9;hb=5f38bc819a3feece3f0c8cf1155735b090e533c1;hpb=34d9941856a9274398e63f2c2a86300dc157eafd diff --git a/lib/trace-collection.c b/lib/trace-collection.c index fa1497ac..035d2dc2 100644 --- a/lib/trace-collection.c +++ b/lib/trace-collection.c @@ -72,19 +72,6 @@ static void check_clock_match(gpointer key, gpointer value, gpointer user_data) } } -/* - * Note: if using a frequency different from 1GHz for clock->offset, it - * is recommended to express the seconds in offset_s, otherwise there - * will be a loss of precision caused by the limited size of the double - * mantissa. - */ -static -uint64_t clock_offset_ns(struct ctf_clock *clock) -{ - return clock->offset_s * 1000000000ULL - + clock_cycles_to_ns(clock, clock->offset); -} - static void clock_add(gpointer key, gpointer value, gpointer user_data) { struct clock_match *clock_match = user_data;