We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d62b106 commit 76abc43Copy full SHA for 76abc43
1 file changed
wolfcrypt/benchmark/benchmark.c
@@ -15752,13 +15752,13 @@ void bench_sphincsKeySign(byte level, byte optim)
15752
double current_time(int reset)
15753
{
15754
portTickType tickCount = xTaskGetTickCount();
15755
+ (void)reset;
15756
/* if configTICK_RATE_HZ is available use if (default is 1000) */
15757
#ifdef configTICK_RATE_HZ
15758
return (double)tickCount / configTICK_RATE_HZ;
15759
#else
15760
return (double)tickCount / 1000;
15761
#endif
- (void)reset;
15762
}
15763
15764
0 commit comments