os.linux: Move buildThreadAttributeName() methods to Attributes interface
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / internal / analysis / os / linux / core / kernel / handlers / SchedWakeupHandler.java
index 625dbcdc49aa8dd7422028bb59e51dc842b04e69..d0fb0940d6b8965c6446e58f3309a1161c4f6184 100644 (file)
@@ -40,7 +40,7 @@ public class SchedWakeupHandler extends KernelEventHandler {
         final int tid = ((Long) event.getContent().getField(getLayout().fieldTid()).getValue()).intValue();
         final int prio = ((Long) event.getContent().getField(getLayout().fieldPrio()).getValue()).intValue();
 
-        String threadAttributeName = KernelEventHandlerUtils.buildThreadAttributeName(tid, cpu);
+        String threadAttributeName = Attributes.buildThreadAttributeName(tid, cpu);
         if (threadAttributeName == null) {
             return;
         }
This page took 0.038516 seconds and 5 git commands to generate.