aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Kenna <cjk@cs.unc.edu>2011-04-27 18:54:56 -0400
committerChristopher Kenna <cjk@cs.unc.edu>2011-04-27 18:54:56 -0400
commit68659a1a1853b5e020edadf5372d6e34c239f17f (patch)
tree05220d50a7755dc089283f3bfcb1f9b49d2ea2ff
parentf7bc9e84f153fb53dbbbc8806caef2cac3a7e580 (diff)
BEspin records start, stop, desired exec time nowwip-edf-hsb
-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) {