kernel: event_logger: remove kernel_event_logger

Move to more generic tracing hooks that can be implemented in different
ways and do not interfere with the kernel.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2018-04-06 07:48:53 -04:00
commit a2248782a2
39 changed files with 75 additions and 1134 deletions

View file

@ -8,10 +8,6 @@
#define _ksched__h_
#include <kernel_structs.h>
#ifdef CONFIG_KERNEL_EVENT_LOGGER
#include <logging/kernel_event_logger.h>
#endif /* CONFIG_KERNEL_EVENT_LOGGER */
#include <tracing.h>
#ifdef CONFIG_MULTITHREADING
@ -228,9 +224,6 @@ static inline void _ready_thread(struct k_thread *thread)
sys_trace_thread_ready(thread);
#ifdef CONFIG_KERNEL_EVENT_LOGGER_THREAD
_sys_k_event_logger_thread_ready(thread);
#endif
}
static inline void _ready_one_thread(_wait_q_t *wq)