CLI: Show filter expression associated to a syscall
[lttng-tools.git] / src / bin / lttng / commands / list.c
index 1cce29b71d9d0919c7dd9b0342c65f0622f9a528..b122b5b789284ce78be1e1a327894575fe5dc023 100644 (file)
@@ -350,10 +350,11 @@ static void print_events(struct lttng_event *event)
                MSG("%ssymbol: \"%s\"", indent8, event->attr.ftrace.symbol_name);
                break;
        case LTTNG_EVENT_SYSCALL:
-               MSG("%s%s%s%s%s", indent6, event->name,
+               MSG("%s%s%s%s%s%s", indent6, event->name,
                                (opt_syscall ? "" : " (type:syscall)"),
                                enabled_string(event->enabled),
-                               bitness_event(event->flags));
+                               bitness_event(event->flags),
+                               safe_string(filter_msg));
                break;
        case LTTNG_EVENT_NOOP:
                MSG("%s (type: noop)%s%s", indent6,
This page took 0.023463 seconds and 4 git commands to generate.