Fix typo in method name: setNewProcessPio -> setNewProcessPrio
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / internal / analysis / os / linux / core / kernel / handlers / SchedSwitchHandler.java
index 371a1cd6b19f4e8dfb967acaed99b2cf5bd97d48..b07195d0186cc203466f5d50a5f8cc7e5d5a5a99 100644 (file)
@@ -73,7 +73,7 @@ public class SchedSwitchHandler extends KernelEventHandler {
         setNewProcessExecName(ss, nextProcessName, newCurrentThreadNode, timestamp);
 
         /* Set the current prio for the new process */
-        setNewProcessPio(ss, nextPrio, newCurrentThreadNode, timestamp);
+        setNewProcessPrio(ss, nextPrio, newCurrentThreadNode, timestamp);
 
         /* Make sure the PPID and system_call sub-attributes exist */
         ss.getQuarkRelativeAndAdd(newCurrentThreadNode, Attributes.SYSTEM_CALL);
@@ -156,7 +156,7 @@ public class SchedSwitchHandler extends KernelEventHandler {
         ss.modifyAttribute(timestamp, value, quark);
     }
 
-    private static void setNewProcessPio(ITmfStateSystemBuilder ss, Integer nextPrio, Integer newCurrentThreadNode, long timestamp) throws AttributeNotFoundException {
+    private static void setNewProcessPrio(ITmfStateSystemBuilder ss, Integer nextPrio, Integer newCurrentThreadNode, long timestamp) throws AttributeNotFoundException {
         int quark;
         ITmfStateValue value;
         quark = ss.getQuarkRelativeAndAdd(newCurrentThreadNode, Attributes.PRIO);
This page took 0.025254 seconds and 5 git commands to generate.