X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=analysis%2Forg.eclipse.tracecompass.analysis.os.linux.core%2Fsrc%2Forg%2Feclipse%2Ftracecompass%2Fanalysis%2Fos%2Flinux%2Fcore%2Ftrace%2FIKernelAnalysisEventLayout.java;h=84f0837b9fe65836bf1ac70c191a779ad3473655;hb=48b36dceefd77871835e1b4961fe0ba75f4bbed5;hp=47289c9887710489af4849d434c59cbffb299d65;hpb=0a004264ebdb168e97dad857cafe4942035109a3;p=deliverable%2Ftracecompass.git diff --git a/analysis/org.eclipse.tracecompass.analysis.os.linux.core/src/org/eclipse/tracecompass/analysis/os/linux/core/trace/IKernelAnalysisEventLayout.java b/analysis/org.eclipse.tracecompass.analysis.os.linux.core/src/org/eclipse/tracecompass/analysis/os/linux/core/trace/IKernelAnalysisEventLayout.java index 47289c9887..84f0837b9f 100644 --- a/analysis/org.eclipse.tracecompass.analysis.os.linux.core/src/org/eclipse/tracecompass/analysis/os/linux/core/trace/IKernelAnalysisEventLayout.java +++ b/analysis/org.eclipse.tracecompass.analysis.os.linux.core/src/org/eclipse/tracecompass/analysis/os/linux/core/trace/IKernelAnalysisEventLayout.java @@ -763,13 +763,13 @@ public interface IKernelAnalysisEventLayout { // ------------------------------------------------------------------------ /** - * An event indicating that a packet is sent on the network + * Get the list of events indicating that a packet is sent on the network * * @return The name of the packet send event * @since 2.1 */ - default String eventNetworkSend() { - return "net_dev_queue"; //$NON-NLS-1$ + default Collection eventsNetworkSend() { + return Collections.EMPTY_SET; } /** @@ -779,8 +779,8 @@ public interface IKernelAnalysisEventLayout { * @return The collection of names of the packet receive event * @since 2.1 */ - default Collection eventNetworkReceive() { - return Collections.singleton("netif_receive_skb"); //$NON-NLS-1$ + default Collection eventsNetworkReceive() { + return Collections.EMPTY_SET; } /**