diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-20 16:04:48 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-20 16:04:48 +0100 |
commit | 3d34449efeb67a20865822aeb4adf1d1eb7ffb3f (patch) | |
tree | 16ebecafdfcd74e8146555acb8e5e48bdbd46dcf /TRNS/support/timer.h | |
parent | a991be525c044a7795a82076e60946bda3c6e408 (diff) |
TRNS dpu: Include reconfiguration overhead; fix timer resets in inner loop
Diffstat (limited to 'TRNS/support/timer.h')
-rwxr-xr-x | TRNS/support/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TRNS/support/timer.h b/TRNS/support/timer.h index 4d597b9..3e826f0 100755 --- a/TRNS/support/timer.h +++ b/TRNS/support/timer.h @@ -37,9 +37,9 @@ typedef struct Timer{
- struct timeval startTime[7];
- struct timeval stopTime[7];
- double time[7];
+ struct timeval startTime[8];
+ struct timeval stopTime[8];
+ double time[8];
}Timer;
|