KernelAnalysis: Use CPUs CoreAttributes to store "Status"
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / internal / analysis / os / linux / core / kernel / handlers / SysEntryHandler.java
index f2b4ed27b81fef09688f4c27f4c77250b79dcfe5..6df8e145c7f98997af88927a0ac42d8c143f93f4 100644 (file)
@@ -55,9 +55,8 @@ public class SysEntryHandler extends KernelEventHandler {
 
         /* Put the CPU in system call (kernel) mode */
         int currentCPUNode = KernelEventHandlerUtils.getCurrentCPUNode(cpu, ss);
-        quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.STATUS);
         value = StateValues.CPU_STATUS_RUN_SYSCALL_VALUE;
-        ss.modifyAttribute(timestamp, value, quark);
+        ss.modifyAttribute(timestamp, value, currentCPUNode);
     }
 
 }
This page took 0.034931 seconds and 5 git commands to generate.