X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon.c;h=7a9925e60febc3a8664068a25c83aa9289c0aa0e;hb=c941855cb55c6869d8935d5c9680ad705a393504;hp=a09ad2c0c7f4c4e37b155fb2a126c7293d8d2562;hpb=c56c5515ae14a676d9b78a638c47c0b5614b3f49;p=lttngtop.git diff --git a/src/common.c b/src/common.c index a09ad2c..7a9925e 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_pid && tid != opt_pid) + 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) @@ -583,9 +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; + if (proc) { + free(proc->comm); + proc->comm = strdup(procname); + proc->pid = pid; + } return BT_CB_OK;