tests: benchmark: timing_info: Change API/variable Name.
The API/Variable names in timing_info looks very speicific to platform (like systick etc), whereas these variabled are used across platforms (nrf/arm/quark). So this patch :- 1. changing API/Variable names to generic one. 2. Creating some of Macros whose implimentation is platform depenent. Jira: ZEP-2314 Signed-off-by: Youvedeep Singh <youvedeep.singh@intel.com>
This commit is contained in:
parent
70e381f2e8
commit
76b577e180
12 changed files with 246 additions and 241 deletions
|
@ -216,8 +216,8 @@ void _timer_int_handler(void *unused)
|
|||
ARG_UNUSED(unused);
|
||||
|
||||
#ifdef CONFIG_EXECUTION_BENCHMARKING
|
||||
extern void read_systick_start_of_tick_handler(void);
|
||||
read_systick_start_of_tick_handler();
|
||||
extern void read_timer_start_of_tick_handler(void);
|
||||
read_timer_start_of_tick_handler();
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_KERNEL_EVENT_LOGGER_INTERRUPT
|
||||
|
@ -350,8 +350,8 @@ void _timer_int_handler(void *unused)
|
|||
#endif /* CONFIG_SYS_POWER_MANAGEMENT */
|
||||
|
||||
#ifdef CONFIG_EXECUTION_BENCHMARKING
|
||||
extern void read_systick_end_of_tick_handler(void);
|
||||
read_systick_end_of_tick_handler();
|
||||
extern void read_timer_end_of_tick_handler(void);
|
||||
read_timer_end_of_tick_handler();
|
||||
#endif
|
||||
|
||||
extern void _ExcExit(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue