Rename Profiler to Event Logger.
In order to have a name according to the functionality of the feature. This commit rename any text, function and variable related with the Profiler name to Event logger. Change-Id: I4f612cbc7c37965c35a64f06cc3ce5e3249d90e5 Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
parent
16504c27c1
commit
e378747706
34 changed files with 361 additions and 351 deletions
|
@ -120,9 +120,9 @@ SECTION_FUNC(TEXT, _NanoIdleValClear)
|
|||
*/
|
||||
|
||||
SECTION_FUNC(TEXT, nano_cpu_idle)
|
||||
#ifdef CONFIG_PROFILER_SLEEP
|
||||
#ifdef CONFIG_KERNEL_EVENT_LOGGER_SLEEP
|
||||
push {lr}
|
||||
bl _sys_profiler_enter_sleep
|
||||
bl _sys_k_event_logger_enter_sleep
|
||||
pop {lr}
|
||||
#endif
|
||||
|
||||
|
@ -161,9 +161,9 @@ SECTION_FUNC(TEXT, nano_cpu_idle)
|
|||
*/
|
||||
|
||||
SECTION_FUNC(TEXT, nano_cpu_atomic_idle)
|
||||
#ifdef CONFIG_PROFILER_SLEEP
|
||||
#ifdef CONFIG_KERNEL_EVENT_LOGGER_SLEEP
|
||||
push {lr}
|
||||
bl _sys_profiler_enter_sleep
|
||||
bl _sys_k_event_logger_enter_sleep
|
||||
pop {lr}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -58,9 +58,9 @@ SECTION_FUNC(TEXT, _isr_wrapper)
|
|||
|
||||
push {lr} /* lr is now the first item on the stack */
|
||||
|
||||
#ifdef CONFIG_PROFILER_INTERRUPT
|
||||
#ifdef CONFIG_KERNEL_EVENT_LOGGER_INTERRUPT
|
||||
push {lr}
|
||||
bl _sys_profiler_interrupt
|
||||
bl _sys_k_event_logger_interrupt
|
||||
pop {lr}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -58,10 +58,10 @@ SECTION_FUNC(TEXT, __pendsv)
|
|||
|
||||
_GDB_STUB_EXC_ENTRY
|
||||
|
||||
#ifdef CONFIG_PROFILER_CONTEXT_SWITCH
|
||||
#ifdef CONFIG_KERNEL_EVENT_LOGGER_CONTEXT_SWITCH
|
||||
/* Register the context switch */
|
||||
push {lr}
|
||||
bl _sys_profiler_context_switch
|
||||
bl _sys_k_event_logger_context_switch
|
||||
pop {lr}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue