zephyr/arch/arm/include/tracing_arch.h
Anas Nashif a2248782a2 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>
2018-08-21 05:45:47 -07:00

37 lines
674 B
C

/*
* Copyright (c) 2015 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief Kernel event logger support for ARM
*/
#ifndef __KERNEL_TRACING_H__
#define __KERNEL_TRACING_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "arch/arm/cortex_m/cmsis.h"
/**
* @brief Get the identification of the current interrupt.
*
* This routine obtain the key of the interrupt that is currently processed
* if it is called from a ISR context.
*
* @return The key of the interrupt that is currently being processed.
*/
int _sys_current_irq_key_get(void)
{
return __get_IPSR();
}
#ifdef __cplusplus
}
#endif
#endif /* __KERNEL_TRACING_H__ */