diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-08 15:35:30 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-08 15:35:30 +0100 |
commit | ccf4afd953b46eb6916ec13d5bcc311a0c97c7a7 (patch) | |
tree | 988ab392b08654bd4641477571da906f783328bd /RED/support | |
parent | c9e93cc11b380ea448327c8fd2ffb7f0f9adb5fe (diff) |
RED: introduce alloc/load/free overhead parameters; vary them for fgbs24a
Diffstat (limited to 'RED/support')
-rwxr-xr-x | RED/support/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/RED/support/timer.h b/RED/support/timer.h index 5c00213..4d597b9 100755 --- a/RED/support/timer.h +++ b/RED/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;
|