Skip to content
Snippets Groups Projects
Commit f5c55154 authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Tidy output

parent c5f4297d
Branches
Tags
No related merge requests found
...@@ -262,8 +262,9 @@ static void *send_thread(void *arg) { ...@@ -262,8 +262,9 @@ static void *send_thread(void *arg) {
"%.3f (%s)", "%.3f (%s)",
ncalls, clocks_from_ticks(sum), clocks_from_ticks(sum / ncalls), ncalls, clocks_from_ticks(sum), clocks_from_ticks(sum / ncalls),
clocks_from_ticks(mint), clocks_from_ticks(maxt), clocks_getunit()); clocks_from_ticks(mint), clocks_from_ticks(maxt), clocks_getunit());
message("took %.3f %s.", clocks_from_ticks(getticks() - starttics), if (verbose)
clocks_getunit()); message("took %.3f %s.", clocks_from_ticks(getticks() - starttics),
clocks_getunit());
/* Thread exits. */ /* Thread exits. */
return NULL; return NULL;
...@@ -288,8 +289,9 @@ static void *recv_thread(void *arg) { ...@@ -288,8 +289,9 @@ static void *recv_thread(void *arg) {
"%.3f (%s)", "%.3f (%s)",
ncalls, clocks_from_ticks(sum), clocks_from_ticks(sum / ncalls), ncalls, clocks_from_ticks(sum), clocks_from_ticks(sum / ncalls),
clocks_from_ticks(mint), clocks_from_ticks(maxt), clocks_getunit()); clocks_from_ticks(mint), clocks_from_ticks(maxt), clocks_getunit());
message("took %.3f %s.", clocks_from_ticks(getticks() - starttics), if (verbose)
clocks_getunit()); message("took %.3f %s.", clocks_from_ticks(getticks() - starttics),
clocks_getunit());
/* Thread exits. */ /* Thread exits. */
return NULL; return NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment