lttng: Fix ControlViewTest
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / model / impl / TraceSessionComponent.java
index 2229f8698e3ed2e4c787ad7cc9cf41b88e9f3852..98286e1ebccd0f4c926a9bc2e8fbe7d13b0f99e1 100644 (file)
@@ -393,14 +393,16 @@ public class TraceSessionComponent extends TraceControlComponent {
     /**
      * Enables all syscalls (for kernel domain)
      *
+     * @param syscallNames
+     *            - a list of syscall names to be enabled
      * @param monitor
      *            - a progress monitor
      * @throws ExecutionException
      *             If the command fails
      */
-    public void enableSyscalls(IProgressMonitor monitor)
+    public void enableSyscalls(List<String> syscallNames, IProgressMonitor monitor)
             throws ExecutionException {
-        getControlService().enableSyscalls(getName(), null, monitor);
+        getControlService().enableSyscalls(getName(), null, syscallNames, monitor);
     }
 
     /**
This page took 0.024879 seconds and 5 git commands to generate.