diff options
Diffstat (limited to 'BS/support/timer.h')
-rwxr-xr-x | BS/support/timer.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/BS/support/timer.h b/BS/support/timer.h index 969ef97..08027af 100755 --- a/BS/support/timer.h +++ b/BS/support/timer.h @@ -57,3 +57,10 @@ void stop(Timer *timer, int i) { }
void print(Timer *timer, int i, int REP) { printf("%f\t", timer->time[i] / (1000 * REP)); }
+
+void printall(Timer *timer, int maxt) {
+ for (int i = 0; i <= maxt; i++) {
+ printf(" timer%d_us=%f", i, timer->time[i]);
+ }
+ printf("\n");
+}
|