blob: 5c336a3c0e1059d1b21d817abf2aea9c531b1126 [file] [log] [blame]
/*
* Copyright (c) 2015 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief Kernel event logger support for x86
*/
#ifndef ZEPHYR_ARCH_X86_INCLUDE_TRACING_ARCH_H_
#define ZEPHYR_ARCH_X86_INCLUDE_TRACING_ARCH_H_
#include <arch/x86/irq_controller.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @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.
*/
static inline int z_sys_current_irq_key_get(void)
{
return z_irq_controller_isr_vector_get();
}
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_ARCH_X86_INCLUDE_TRACING_ARCH_H_ */