kernel: renamespace z_is_in_isr()
This is part of the core kernel -> architecture interface and is appropriately renamed z_arch_is_in_isr(). References from test cases changed to k_is_in_isr(). Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
61901ccb4c
commit
e1ec59f9c2
22 changed files with 31 additions and 31 deletions
|
@ -43,7 +43,7 @@ void z_impl_k_thread_abort(k_tid_t thread)
|
|||
z_thread_single_abort(thread);
|
||||
z_thread_monitor_exit(thread);
|
||||
|
||||
if (thread == _current && !z_is_in_isr()) {
|
||||
if (thread == _current && !z_arch_is_in_isr()) {
|
||||
z_swap(&lock, key);
|
||||
} else {
|
||||
/* Really, there's no good reason for this to be a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue