test: benchmarking: Timing metrics for the kernel
JIRA: ZEP-1822, ZEP-1823, ZEP-1825 Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
This commit is contained in:
parent
e0a643591d
commit
d03b2496cd
19 changed files with 1486 additions and 1 deletions
|
@ -211,6 +211,11 @@ 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();
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_KERNEL_EVENT_LOGGER_INTERRUPT
|
||||
extern void _sys_k_event_logger_interrupt(void);
|
||||
_sys_k_event_logger_interrupt();
|
||||
|
@ -337,6 +342,11 @@ 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();
|
||||
#endif
|
||||
|
||||
extern void _ExcExit(void);
|
||||
_ExcExit();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue