mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 19:45:50 +00:00
Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
27 lines
433 B
C
27 lines
433 B
C
/*
|
|
* Copyright (c) 2017 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _NATIVE_POSIX_IRQ_HANDLER_H
|
|
#define _NATIVE_POSIX_IRQ_HANDLER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
void posix_irq_handler_im_from_sw(void);
|
|
void posix_sw_set_pending_IRQ(unsigned int IRQn);
|
|
void posix_sw_clear_pending_IRQ(unsigned int IRQn);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _NATIVE_POSIX_IRQ_HANDLER_H */
|