2014-04-22 17:43:32 -07:00
|
|
|
/**
|
|
|
|
* @file rfi_perftest.h
|
|
|
|
*
|
|
|
|
* @date Nov 30, 2012
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RFI_PERFTEST_H_
|
|
|
|
#define RFI_PERFTEST_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
//void testMath(int count);
|
|
|
|
//void testSystemCalls(int count);
|
|
|
|
void initTimePerfActions(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* RFI_PERFTEST_H_ */
|