Remove the # in the example so we can just copy/paste it to a shell
[lttngtop.git] / src / cputop.c
index 2cf1ea25880ae8bd46e44684eded71004bd8c136..cdc1bdf1e0251875e008b231cf0db6b7fb37c328 100644 (file)
@@ -121,13 +121,7 @@ enum bt_cb_ret handle_sched_process_free(struct bt_ctf_event *call_data,
                goto error;
        }
 
                goto error;
        }
 
-       tid = bt_ctf_get_int64(bt_ctf_get_field(call_data,
-                               scope, "_tid"));
-       if (bt_ctf_field_get_error()) {
-               fprintf(stderr, "Missing tid context info\n");
-               goto error;
-       }
-
+       tid = get_context_tid(call_data);
        death_proc(&lttngtop, tid, comm, timestamp);
 
        return BT_CB_OK;
        death_proc(&lttngtop, tid, comm, timestamp);
 
        return BT_CB_OK;
This page took 0.022071 seconds and 4 git commands to generate.