tracing: Add missing isr_exit() for posix arch boards
For the native_posix board, and for the nrf52_bsim boards, the sys_trace_irs_exit() call was missing. Add it. Relates to #13357 Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
This commit is contained in:
parent
62d866385e
commit
143552550f
2 changed files with 4 additions and 0 deletions
|
@ -57,6 +57,8 @@ static inline void vector_to_irq(int irq_nbr, int *may_swap)
|
|||
*may_swap = 1;
|
||||
}
|
||||
}
|
||||
|
||||
sys_trace_isr_exit();
|
||||
/* _int_latency_stop(); */
|
||||
}
|
||||
|
||||
|
|
|
@ -111,6 +111,8 @@ static inline void vector_to_irq(int irq_nbr, int *may_swap)
|
|||
*may_swap = 1;
|
||||
}
|
||||
}
|
||||
|
||||
sys_trace_isr_exit();
|
||||
/* _int_latency_stop(); */
|
||||
|
||||
bs_trace_raw_time(7, "Irq %i (%s) ended\n", irq_nbr, irqnames[irq_nbr]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue