X-Git-Url: https://git.lttng.org/?p=lttngtop.git;a=blobdiff_plain;f=src%2Fcputop.c;h=4a2a8e8caad5013287a8ebd7e9a846a6ed348e63;hp=eb7afb3e76a799f758b3d2b99ad00dceccf162a7;hb=4e6aeb3d1a8330c7486b762336f11510baaa433c;hpb=480b40ce04942ac489d83ae67f54eb4b5b6f2f80 diff --git a/src/cputop.c b/src/cputop.c index eb7afb3..4a2a8e8 100644 --- a/src/cputop.c +++ b/src/cputop.c @@ -48,13 +48,13 @@ void update_cputop_data(unsigned long timestamp, int64_t cpu, int prev_pid, enum bt_cb_ret handle_sched_switch(struct bt_ctf_event *call_data, void *private_data) { - const struct definition *scope; + const struct bt_definition *scope; unsigned long timestamp; uint64_t cpu_id; char *prev_comm, *next_comm; int prev_tid, next_tid; - timestamp = bt_ctf_get_timestamp(call_data); + timestamp = bt_ctf_get_real_timestamp(call_data); if (timestamp == -1ULL) goto error; @@ -102,12 +102,12 @@ error: enum bt_cb_ret handle_sched_process_free(struct bt_ctf_event *call_data, void *private_data) { - const struct definition *scope; + const struct bt_definition *scope; unsigned long timestamp; char *comm; int tid; - timestamp = bt_ctf_get_timestamp(call_data); + timestamp = bt_ctf_get_real_timestamp(call_data); if (timestamp == -1ULL) goto error;