Merge branch 'master' of github.com:cyassl/cyassl

This commit is contained in:
toddouska 2013-11-20 17:07:33 -08:00
commit 6e7c9fb8de
1 changed files with 15 additions and 0 deletions

View File

@ -1087,7 +1087,22 @@ void bench_eccKeyAgree(void)
}
#elif defined CYASSL_MDK_ARM
extern double current_time(int reset) ;
#elif defined FREERTOS
double current_time(int reset)
{
(void) reset;
portTickType tickCount;
/* tick count == ms, if configTICK_RATE_HZ is set to 1000 */
tickCount = xTaskGetTickCount();
return (double)tickCount / 1000;
}
#else
#include <sys/time.h>