diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-01 08:57:58 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-01 08:57:58 +0100 |
commit | 87f6ad41589028457803af90f1391cc010ffa583 (patch) | |
tree | 780820b64a933e8e78e6a8c9b73f64ae9b0b4b1d /BS/support | |
parent | 27db7a5b221770bedede103410c16462f1f5cff1 (diff) |
BS: add overhead measurements
Diffstat (limited to 'BS/support')
-rwxr-xr-x | BS/support/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BS/support/timer.h b/BS/support/timer.h index 08027af..ff1ae1b 100755 --- a/BS/support/timer.h +++ b/BS/support/timer.h @@ -37,9 +37,9 @@ typedef struct Timer{
- struct timeval startTime[4];
- struct timeval stopTime[4];
- double time[4];
+ struct timeval startTime[7];
+ struct timeval stopTime[7];
+ double time[7];
}Timer;
|