Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove semicolon (No, Sonar, it's not commented code).
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 7 Feb 2018 10:09:41 +0000 (11:09 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 7 Feb 2018 10:09:41 +0000 (11:09 +0100)
src/surf/plugins/host_dvfs.cpp

index d74cc16..251f05f 100644 (file)
@@ -86,10 +86,10 @@ public:
     } else {
       /* The actual implementation uses a formula here: (See Kernel file cpufreq_ondemand.c:158)
        *
     } else {
       /* The actual implementation uses a formula here: (See Kernel file cpufreq_ondemand.c:158)
        *
-       *    freq_next = min_f + load * (max_f - min_f) / 100;
+       *    freq_next = min_f + load * (max_f - min_f) / 100
        *
        * So they assume that frequency increases by 100 MHz. We will just use
        *
        * So they assume that frequency increases by 100 MHz. We will just use
-       * lowest_pstate - load*pstatesCount();
+       * lowest_pstate - load*pstatesCount()
        */
       int max_pstate = host->getPstatesCount() - 1;
 
        */
       int max_pstate = host->getPstatesCount() - 1;