X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcputop.c;h=eb7afb3e76a799f758b3d2b99ad00dceccf162a7;hb=aa15ac1c699ea5f76f6c26fb14ab22f725ecc293;hp=c561d47205dd8af3ba8dc192f7da3652c0fe2369;hpb=3ba84bed69e8eb8e6794a7250da97406dbbe02c2;p=lttngtop.git diff --git a/src/cputop.c b/src/cputop.c index c561d47..eb7afb3 100644 --- a/src/cputop.c +++ b/src/cputop.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Julien Desfossez + * Copyright (C) 2011-2012 Julien Desfossez * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License Version 2 as @@ -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(<tngtop, tid, comm, timestamp); return BT_CB_OK;