Changeset 94ebebf in mainline


Ignore:
Timestamp:
2019-01-10T21:07:16Z (5 years ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e7f9a09
Parents:
51a04bd
Message:

hbench: turn comments into doc-blocks

Location:
uspace/app/hbench
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/hbench/doc/doxygroups.h

    r51a04bd r94ebebf  
    11/** @addtogroup hbench hbench
    2  * @brief HelenOS user space benchmarks
     2 * @brief User space benchmarks
    33 * @ingroup apps
    44 *
  • uspace/app/hbench/fs/dirread.c

    r51a04bd r94ebebf  
    3838#include "../hbench.h"
    3939
    40 /*
     40/** Execute directory listing benchmark.
     41 *
    4142 * Note that while this benchmark tries to measure speed of direct
    4243 * read, it rather measures speed of FS cache as it is highly probable
  • uspace/app/hbench/fs/fileread.c

    r51a04bd r94ebebf  
    3939#define BUFFER_SIZE 4096
    4040
    41 /*
     41/** Execute file reading benchmark.
     42 *
    4243 * Note that while this benchmark tries to measure speed of file reading,
    4344 * it rather measures speed of FS cache as it is highly probable that the
  • uspace/app/hbench/hbench.h

    r51a04bd r94ebebf  
    4141#include <perf.h>
    4242
    43 /*
    44  * So far, a simple wrapper around system stopwatch.
     43/** Simple wrapper around system stopwatch.
     44 *
    4545 * Eventually, we could collection of hardware counters etc. without
    4646 * modifying signatures of any existing benchmark.
  • uspace/app/hbench/main.c

    r51a04bd r94ebebf  
    7171}
    7272
    73 /*
     73/** Estimate square root value.
     74 *
     75 * @param value The value to compute square root of.
     76 * @param precision Required precision (e.g. 0.00001).
     77 *
     78 * @details
     79 *
    7480 * This is a temporary solution until we have proper sqrt() implementation
    7581 * in libmath.
     
    9298}
    9399
    94 /*
    95  * Compute available statistics from given stopwatches.
     100/** Compute available statistics from given stopwatches.
    96101 *
    97102 * We compute normal mean for average duration of the workload and geometric
Note: See TracChangeset for help on using the changeset viewer.