Changeset d5caf79 in mainline for uspace/app/perf/ipc/ns_ping.c
- Timestamp:
- 2018-12-28T13:56:05Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 980611d5
- Parents:
- c7de81b
- git-author:
- Vojtech Horky <vojtech.horky@…> (2018-12-28 13:54:23)
- git-committer:
- Vojtech Horky <vojtech.horky@…> (2018-12-28 13:56:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/perf/ipc/ns_ping.c
rc7de81b rd5caf79 32 32 #include <errno.h> 33 33 #include <str_error.h> 34 #include "../benchlist.h" 34 35 #include "../perf.h" 35 36 36 bool bench_ns_ping(stopwatch_t *stopwatch, uint64_t niter,37 static bool runner(stopwatch_t *stopwatch, uint64_t niter, 37 38 char *error, size_t error_size) 38 39 { … … 54 55 return true; 55 56 } 57 58 benchmark_t bench_ns_ping = { 59 .name = "ns_ping", 60 .desc = "Name service IPC ping-pong benchmark", 61 .entry = &runner, 62 .setup = NULL, 63 .teardown = NULL 64 };
Note:
See TracChangeset
for help on using the changeset viewer.