{
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;
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)
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;
tmp = get_proc(ctx, tid, comm, timestamp);
+ if (!tmp) {
+ err = -1;
+ goto end;
+ }
if (tmp->syscall_info != NULL) {
if (tmp->syscall_info->type == __NR_read
&& ret > 0) {
g_free(tmp->syscall_info);
tmp->syscall_info = NULL;
}
+
+end:
return err;
}
}
tmp = get_proc(<tngtop, tid, procname, timestamp);
+ if (!tmp)
+ goto end;
+
tmp->syscall_info = create_syscall_info(__NR_write, cpu_id, tid, fd);
insert_file(tmp, fd);
+end:
return BT_CB_OK;
error:
}
tmp = get_proc(<tngtop, tid, procname, timestamp);
+ if (!tmp)
+ goto end;
+
tmp->syscall_info = create_syscall_info(__NR_read, cpu_id, tid, fd);
insert_file(tmp, fd);
+end:
return BT_CB_OK;
error:
}
tmp = get_proc(<tngtop, tid, procname, timestamp);
+ if (!tmp)
+ goto end;
+
tmp->syscall_info = create_syscall_info(__NR_open, cpu_id, tid, -1);
tmp->files_history = create_file(tmp->files_history, file);
+end:
return BT_CB_OK;
error:
}
tmp = get_proc(<tngtop, tid, procname, timestamp);
+ if (!tmp)
+ goto end;
close_file(tmp, fd);
+end:
return BT_CB_OK;
error:
}
parent = get_proc_pid(<tngtop, pid, pid, timestamp);
+ if (!parent)
+ goto end;
+
parent->files_history = create_file(parent->files_history, file_name);
file = parent->files_history->file;
edit_file(parent, file, fd);
+end:
return BT_CB_OK;
error:
const char *opt_input_path;
static int opt_textdump;
-static int opt_pid;
static int opt_child;
int quit = 0;
if (pid == -1ULL) {
goto error;
}
+
tid = get_context_tid(call_data);
if (tid == -1ULL) {
goto error;
child = find_process_tid(<tngtop, tid, comm);
if (!child)
child = add_proc(<tngtop, tid, comm, timestamp);
+ if (!child)
+ goto end;
update_proc(child, pid, tid, ppid, vpid, vtid, vppid, comm);
if (pid != tid) {
parent = find_process_tid(<tngtop, pid, comm);
if (!parent) {
parent = add_proc(<tngtop, pid, comm, timestamp);
- parent->pid = pid;
+ if (parent)
+ parent->pid = pid;
}
/* attach the parent to the current process */
update_perf_counter(child, call_data);
+end:
return BT_CB_OK;
error:
opt_child = 1;
break;
case OPT_PID:
- refresh_display = 0.1 * NSEC_PER_SEC;
- opt_textdump = 1;
+ //opt_textdump = 1;
break;
default:
ret = -EINVAL;
iter = bt_ctf_iter_create(bt_ctx, &begin_pos, NULL);
if (opt_textdump) {
- if (opt_pid) {
- printf("PID : %d, Child : %d\n", opt_pid, opt_child);
- }
bt_ctf_iter_add_callback(iter, 0, NULL, 0,
print_timestamp,
NULL, NULL, NULL);
strcpy(chan.name, channel_name);
chan.attr.overwrite = 0;
- if (opt_pid) {
+ if (opt_pid && opt_textdump) {
chan.attr.subbuf_size = 32768;
chan.attr.num_subbuf = 8;
} else {
memset(&ev, '\0', sizeof(struct lttng_event));
//sprintf(ev.name, "sched_switch");
- if (!opt_pid) {
+// if (!opt_pid) {
ev.type = LTTNG_EVENT_TRACEPOINT;
if ((ret = lttng_enable_event(handle, &ev, channel_name)) < 0) {
fprintf(stderr,"error enabling event : %s\n",
helper_lttcomm_get_readable_code(ret));
goto error_session;
}
- }
+// }
ev.type = LTTNG_EVENT_SYSCALL;
if ((ret = lttng_enable_event(handle, &ev, channel_name)) < 0) {
lttng_add_context(handle, &kctxpid, NULL, NULL);
kctxtid.ctx = LTTNG_EVENT_CONTEXT_TID;
lttng_add_context(handle, &kctxtid, NULL, NULL);
- if (!opt_pid) {
+// if (!opt_pid) {
kctxppid.ctx = LTTNG_EVENT_CONTEXT_PPID;
lttng_add_context(handle, &kctxppid, NULL, NULL);
kctxcomm.ctx = LTTNG_EVENT_CONTEXT_PROCNAME;
lttng_add_context(handle, &kctxpid, NULL, NULL);
kctxtid.ctx = LTTNG_EVENT_CONTEXT_VTID;
lttng_add_context(handle, &kctxtid, NULL, NULL);
- }
+// }
if ((ret = lttng_start_tracing("test")) < 0) {
fprintf(stderr,"error starting tracing : %s\n",