Each view can access process details view
[lttngtop.git] / src / cputop.c
index c561d47205dd8af3ba8dc192f7da3652c0fe2369..1b9a129c2e34c399048a3005e5264362912f6dee 100644 (file)
@@ -120,7 +120,13 @@ enum bt_cb_ret handle_sched_process_free(struct bt_ctf_event *call_data,
                goto error;
        }
 
-       tid = get_context_tid(call_data);
+       tid = bt_ctf_get_int64(bt_ctf_get_field(call_data,
+                               scope, "_tid"));
+       if (bt_ctf_field_get_error()) {
+               fprintf(stderr, "Missing tid field\n");
+               goto error;
+       }
+
        death_proc(&lttngtop, tid, comm, timestamp);
 
        return BT_CB_OK;
This page took 0.02286 seconds and 4 git commands to generate.