#include "lttngtoptypes.h"
#include "common.h"
#include "cputop.h"
+#include "lttngtop.h"
void update_cputop_data(unsigned long timestamp, int64_t cpu, int prev_pid,
int next_pid, char *prev_comm, char *next_comm, char *hostname)
}
+enum bt_cb_ret handle_sched_process_fork(struct bt_ctf_event *call_data,
+ void *private_data)
+{
+ const struct bt_definition *scope;
+ struct processtop *tmp;
+ int tid, *hash_tid, parent_pid;
+ unsigned long timestamp;
+ char *comm;
+
+ timestamp = bt_ctf_get_timestamp(call_data);
+ if (timestamp == -1ULL)
+ goto error;
+
+ scope = bt_ctf_get_top_level_scope(call_data,
+ BT_EVENT_FIELDS);
+ comm = bt_ctf_get_char_array(bt_ctf_get_field(call_data,
+ scope, "_child_comm"));
+ if (bt_ctf_field_get_error()) {
+ fprintf(stderr, "Missing procname context info\n");
+ goto error;
+ }
+
+ tid = bt_ctf_get_int64(bt_ctf_get_field(call_data,
+ scope, "_child_tid"));
+ if (bt_ctf_field_get_error()) {
+ fprintf(stderr, "Missing child_tid field\n");
+ goto error;
+ }
+
+ parent_pid = bt_ctf_get_int64(bt_ctf_get_field(call_data,
+ scope, "_parent_pid"));
+ if (bt_ctf_field_get_error()) {
+ fprintf(stderr, "Missing parent_pid field\n");
+ goto error;
+ }
+
+ tmp = get_proc(<tngtop, tid, comm, timestamp, NULL);
+
+ if (opt_child) {
+ hash_tid = lookup_filter_tid_list(parent_pid);
+ if (hash_tid) {
+ add_filter_tid_list(tmp);
+ }
+ }
+
+ return BT_CB_OK;
+
+error:
+ return BT_CB_ERROR_STOP;
+
+}
+
opt_textdump = 1;
break;
case OPT_CHILD:
- opt_textdump = 1;
opt_child = 1;
break;
case OPT_PID:
bt_ctf_iter_add_callback(iter, 0, NULL, 0,
fix_process_table,
NULL, NULL, NULL);
+ /* to handle the follow child option */
+ bt_ctf_iter_add_callback(iter,
+ g_quark_from_static_string("sched_process_fork"),
+ NULL, 0, handle_sched_process_fork, NULL, NULL, NULL);
if (opt_textdump) {
bt_ctf_iter_add_callback(iter, 0, NULL, 0,
print_timestamp,
lttng create $SESSION_NAME --live 1000000 -U net://localhost >/dev/null
[[ $? != 0 ]] && exit 2
-lttng enable-event -s $SESSION_NAME -k lttng_statedump_start,lttng_statedump_end,lttng_statedump_process_state,lttng_statedump_file_descriptor,lttng_statedump_vm_map,lttng_statedump_network_interface,lttng_statedump_interrupt,sched_process_free,sched_switch >/dev/null
+lttng enable-event -s $SESSION_NAME -k lttng_statedump_start,lttng_statedump_end,lttng_statedump_process_state,lttng_statedump_file_descriptor,lttng_statedump_vm_map,lttng_statedump_network_interface,lttng_statedump_interrupt,sched_process_free,sched_switch,sched_process_fork >/dev/null
[[ $? != 0 ]] && exit 2
lttng enable-event -s $SESSION_NAME -k --syscall -a >/dev/null
[[ $? != 0 ]] && exit 2