summaryrefslogtreecommitdiff
path: root/TRNS/support
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-03-11 08:42:19 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-03-11 08:42:19 +0100
commitb7bac5f6c74b2efa68aea4244d2b7646a2ae0442 (patch)
tree357686c748e8d6f9cf191187582db93c7ce4faa5 /TRNS/support
parentff144b225073331776d83e3cf9ddc658efd4d3d4 (diff)
TRNS: properly report alloc/load/free overhead
Diffstat (limited to 'TRNS/support')
-rwxr-xr-xTRNS/support/timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/TRNS/support/timer.h b/TRNS/support/timer.h
index 3e826f0..3ec6d87 100755
--- a/TRNS/support/timer.h
+++ b/TRNS/support/timer.h
@@ -37,9 +37,9 @@
typedef struct Timer{
- struct timeval startTime[8];
- struct timeval stopTime[8];
- double time[8];
+ struct timeval startTime[9];
+ struct timeval stopTime[9];
+ double time[9];
}Timer;