diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-08 16:46:01 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-08 16:46:01 +0100 |
commit | ba723e79d5c426fb4bc899b869bc0b497e72a152 (patch) | |
tree | 7a2c18a932334758c4c6e27213237f02276a941d /SEL/support/timer.h | |
parent | 647f975a38816f025c5758de931e2b698ba1244e (diff) |
SEL: introduce alloc/load/free overhead parameters; vary them for fgbs24a
Diffstat (limited to 'SEL/support/timer.h')
-rwxr-xr-x | SEL/support/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SEL/support/timer.h b/SEL/support/timer.h index 4d597b9..3e826f0 100755 --- a/SEL/support/timer.h +++ b/SEL/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;
|