X-Git-Url: https://git.lttng.org/?p=lttngtop.git;a=blobdiff_plain;f=src%2Fcommon.c;h=4860b7aef76d406d1f8f44f97ae3fcdea9c0c133;hp=eca4d496a07da206e4c31316fb8cce4ecd330054;hb=57bff78803b67f5b9736d18f57b88b6b6191975e;hpb=11d218ce379a7c08bec00b808c7bcfe5943a7208 diff --git a/src/common.c b/src/common.c index eca4d49..4860b7a 100644 --- a/src/common.c +++ b/src/common.c @@ -164,9 +164,13 @@ struct processtop* add_proc(struct lttngtop *ctx, int tid, char *comm, { struct processtop *newproc; + if (opt_tid && !lookup_tid_list(tid)) + return NULL; + /* if the PID already exists, we just rename the process */ /* FIXME : need to integrate with clone/fork/exit to be accurate */ newproc = find_process_tid(ctx, tid, comm); + if (!newproc) { newproc = g_new0(struct processtop, 1); newproc->tid = tid; @@ -255,6 +259,9 @@ void add_thread(struct processtop *parent, struct processtop *thread) gint i; struct processtop *tmp; + if (!parent) + return; + for (i = 0; i < parent->threads->len; i++) { tmp = g_ptr_array_index(parent->threads, i); if (tmp == thread) @@ -541,17 +548,15 @@ enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data, ppid = bt_ctf_get_int64(bt_ctf_get_field(call_data, scope, "_ppid")); if (bt_ctf_field_get_error()) { - fprintf(stderr, "Missing pid context info\n"); + fprintf(stderr, "Missing ppid context info\n"); 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; } - vtid = bt_ctf_get_int64(bt_ctf_get_field(call_data, scope, "_vtid")); if (bt_ctf_field_get_error()) { @@ -561,23 +566,16 @@ enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data, vpid = bt_ctf_get_int64(bt_ctf_get_field(call_data, scope, "_vpid")); if (bt_ctf_field_get_error()) { - fprintf(stderr, "Missing vtid context info\n"); + fprintf(stderr, "Missing vpid context info\n"); goto error; } vppid = bt_ctf_get_int64(bt_ctf_get_field(call_data, scope, "_vppid")); if (bt_ctf_field_get_error()) { - fprintf(stderr, "Missing vtid context info\n"); + fprintf(stderr, "Missing vppid context info\n"); goto error; } - /* - * FIXME - * I first tried with bt_ctf_get_string but doesn`t work at all - * It couldn`t find the field _name because it is an integer in - * the metadata and not a string like _filename for the - * statedump_file_descriptor - */ scope = bt_ctf_get_top_level_scope(call_data, BT_EVENT_FIELDS); procname = bt_ctf_get_char_array(bt_ctf_get_field(call_data, @@ -592,17 +590,11 @@ enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data, proc = add_proc(<tngtop, tid, procname, timestamp); update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname); - free(proc->comm); - proc->comm = strdup(procname); - proc->pid = pid; - - /* - * FIXME - * I would like to free procname because it is duplicated - * when the process is created but it segfaults... - * - * free(procname); - */ + if (proc) { + free(proc->comm); + proc->comm = strdup(procname); + proc->pid = pid; + } return BT_CB_OK; @@ -626,3 +618,8 @@ struct tm format_timestamp(uint64_t timestamp) return tm; } + +int *lookup_tid_list(int tid) +{ + return g_hash_table_lookup(tid_list, (gpointer) &tid); +}