Changeset ebb0835 in mainline for uspace/app/hbench/ipc/ping_pong.c
- Timestamp:
- 2019-01-07T12:56:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c2db02a
- Parents:
- a787081
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hbench/ipc/ping_pong.c
ra787081 rebb0835 59 59 } 60 60 61 static bool runner( stopwatch_t *stopwatch, uint64_t niter,61 static bool runner(benchmeter_t *meter, uint64_t niter, 62 62 char *error, size_t error_size) 63 63 { 64 stopwatch_start(stopwatch);64 benchmeter_start(meter); 65 65 66 66 for (uint64_t count = 0; count < niter; count++) { … … 75 75 } 76 76 77 stopwatch_stop(stopwatch);77 benchmeter_stop(meter); 78 78 79 79 return true;
Note:
See TracChangeset
for help on using the changeset viewer.