free(proc->comm);
proc->comm = strdup(comm);
}
+ if (hostname && !proc->hostname) {
+ proc->hostname = strdup(hostname);
+ if (lookup_hostname_list(hostname)) {
+ add_filter_tid_list(tid, proc);
+ }
+ }
}
return proc;
}
unsigned long timestamp, char *hostname)
{
struct processtop *tmp;
+
tmp = find_process_tid(ctx, tid, comm);
- if (tmp && strcmp(tmp->comm, comm) == 0)
+ if (tmp && strcmp(tmp->comm, comm) == 0) {
return tmp;
+ }
return add_proc(ctx, tid, comm, timestamp, hostname);
}
struct processtop *proc;
unsigned long timestamp;
int64_t pid, tid, ppid, vtid, vpid, vppid;
- char *procname;
+ char *procname, *hostname = NULL;
timestamp = bt_ctf_get_timestamp(call_data);
if (timestamp == -1ULL)
fprintf(stderr, "Missing process name context info\n");
goto error;
}
+ /*
+ hostname = bt_ctf_get_char_array(bt_ctf_get_field(call_data,
+ scope, "_hostname"));
+ if (bt_ctf_field_get_error()) {
+ }
+ */
proc = find_process_tid(<tngtop, tid, procname);
- /* FIXME : hostname NULL */
if (proc == NULL)
- proc = add_proc(<tngtop, tid, procname, timestamp, NULL);
- update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname, NULL);
+ proc = add_proc(<tngtop, tid, procname, timestamp, hostname);
+ update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname, hostname);
if (proc) {
free(proc->comm);