arch: common: add function for updating IRQ table

This will be called by arch-specific implementations of
_arch_irq_connect_dynamic()

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2018-10-31 16:18:34 -07:00 committed by Anas Nashif
commit 539d3011d3
3 changed files with 32 additions and 0 deletions

View file

@ -71,6 +71,10 @@ struct _isr_list {
#define IRQ_TABLE_SIZE (CONFIG_NUM_IRQS - CONFIG_GEN_IRQ_START_VECTOR)
#ifdef CONFIG_DYNAMIC_INTERRUPTS
void z_isr_install(unsigned int irq, void (*routine)(void *), void *param);
#endif
#endif /* _ASMLANGUAGE */
#ifdef __cplusplus