Changeset 1b20da0 in mainline for uspace/app/rcubench/rcubench.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/rcubench/rcubench.c

    rdf6ded8 r1b20da0  
    135135        }
    136136       
    137         /* 
     137        /*
    138138         * Run the last thread in place so that we create multiple threads
    139139         * only when needed. Otherwise libc would immediately upgrade
     
    193193}
    194194
    195 static bool parse_cmd_line(int argc, char **argv, bench_t *bench, 
     195static bool parse_cmd_line(int argc, char **argv, bench_t *bench,
    196196        const char **err)
    197197{
     
    225225                *err = "Err: Invalid number of iterations";
    226226                return false;
    227         } 
     227        }
    228228       
    229229        /* Determine thread count. */
     
    236236                *err = "Err: Invalid number of threads";
    237237                return false;
    238         } 
     238        }
    239239       
    240240        return true;
     
    275275        }
    276276       
    277         print_res("Completed %" PRIu64 " iterations in %" PRId64  " usecs (%" PRIu64 
    278                 " secs); %" PRIu64 " iters/sec\n", 
    279                 total_iters, duration, secs, iters_per_sec);   
     277        print_res("Completed %" PRIu64 " iterations in %" PRId64  " usecs (%" PRIu64
     278                " secs); %" PRIu64 " iters/sec\n",
     279                total_iters, duration, secs, iters_per_sec);
    280280
    281281        close_results();
Note: See TracChangeset for help on using the changeset viewer.