aboutsummaryrefslogtreecommitdiffstats
path: root/bin/bespin.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/bespin.c')
-rw-r--r--bin/bespin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bespin.c b/bin/bespin.c
index 7cbcd1f..f3b7e20 100644
--- a/bin/bespin.c
+++ b/bin/bespin.c
@@ -212,9 +212,9 @@ static int job(const lt_t exec_mean, const lt_t ia_mean, FILE *out_f,
212 /* record response time if wanted and the job finished */ 212 /* record response time if wanted and the job finished */
213 if (out_f && job_finished) 213 if (out_f && job_finished)
214 { 214 {
215 fprintf(out_f, "%llu, %llu\n", 215 /* print start time, end time, exec time */
216 end_time - ts_to_ns(&sleep_ts), 216 fprintf(out_f, "%llu, %llu, %llu\n",
217 exec); 217 ts_to_ns(&sleep_ts), end_time, exec);
218 } 218 }
219 219
220 if (end_time < program_end) { 220 if (end_time < program_end) {