sync with babeltrace api changes
[lttngtop.git] / src / cputop.c
index e694f3422f515f0b2ddef0033254bd1fd6d3e31d..65cafb5fdb992703a01c0d72422207be724caa45 100644 (file)
@@ -50,12 +50,12 @@ 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;
-       char *hostname;
+       char *hostname = NULL;
 
        timestamp = bt_ctf_get_timestamp(call_data);
        if (timestamp == -1ULL)
@@ -90,7 +90,6 @@ enum bt_cb_ret handle_sched_switch(struct bt_ctf_event *call_data,
                fprintf(stderr, "Missing next_tid context info\n");
                goto error;
        }
-       hostname = get_context_hostname(call_data);
 
        cpu_id = get_cpu_id(call_data);
 
@@ -106,7 +105,7 @@ 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;
This page took 0.022657 seconds and 4 git commands to generate.