Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Wind River Systems, Inc. |
| 3 | * |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 4 | * SPDX-License-Identifier: Apache-2.0 |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * @file |
| 9 | * @brief Primitive for aborting a thread when an arch-specific one is not |
| 10 | * needed.. |
| 11 | */ |
| 12 | |
| 13 | #include <kernel.h> |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 14 | #include <kernel_structs.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 15 | #include <nano_internal.h> |
| 16 | #include <string.h> |
| 17 | #include <toolchain.h> |
Anas Nashif | 397d29d | 2017-06-17 11:30:47 -0400 | [diff] [blame] | 18 | #include <linker/sections.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 19 | #include <wait_q.h> |
Benjamin Walsh | b4b108d | 2016-10-13 10:31:48 -0400 | [diff] [blame] | 20 | #include <ksched.h> |
Andrew Boie | 8eaff5d | 2017-08-28 16:02:24 -0700 | [diff] [blame] | 21 | #include <misc/__assert.h> |
Andrew Boie | 468190a | 2017-09-29 14:00:48 -0700 | [diff] [blame] | 22 | #include <syscall_handler.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 23 | |
Benjamin Walsh | b7ef0cb | 2016-10-05 17:32:01 -0400 | [diff] [blame] | 24 | extern void _k_thread_single_abort(struct k_thread *thread); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 25 | |
Benjamin Walsh | cef368f | 2016-12-17 13:01:49 -0500 | [diff] [blame] | 26 | #if !defined(CONFIG_ARCH_HAS_THREAD_ABORT) |
Andrew Boie | 468190a | 2017-09-29 14:00:48 -0700 | [diff] [blame] | 27 | void _impl_k_thread_abort(k_tid_t thread) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 28 | { |
| 29 | unsigned int key; |
| 30 | |
| 31 | key = irq_lock(); |
| 32 | |
Andrew Boie | 8eaff5d | 2017-08-28 16:02:24 -0700 | [diff] [blame] | 33 | __ASSERT(!(thread->base.user_options & K_ESSENTIAL), |
| 34 | "essential thread aborted"); |
| 35 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 36 | _k_thread_single_abort(thread); |
Allan Stephens | 4aef71b | 2016-10-25 12:45:05 -0500 | [diff] [blame] | 37 | _thread_monitor_exit(thread); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 38 | |
| 39 | if (_current == thread) { |
| 40 | _Swap(key); |
| 41 | CODE_UNREACHABLE; |
| 42 | } |
| 43 | |
| 44 | /* The abort handler might have altered the ready queue. */ |
| 45 | _reschedule_threads(key); |
| 46 | } |
| 47 | #endif |
Andrew Boie | 468190a | 2017-09-29 14:00:48 -0700 | [diff] [blame] | 48 | |
| 49 | #ifdef CONFIG_USERSPACE |
Leandro Pereira | 6f99bdb | 2017-10-13 14:00:22 -0700 | [diff] [blame] | 50 | _SYSCALL_HANDLER(k_thread_abort, thread_p) |
Andrew Boie | 468190a | 2017-09-29 14:00:48 -0700 | [diff] [blame] | 51 | { |
| 52 | struct k_thread *thread = (struct k_thread *)thread_p; |
Andrew Boie | 225e4c0 | 2017-10-12 09:54:26 -0700 | [diff] [blame] | 53 | _SYSCALL_OBJ(thread, K_OBJ_THREAD); |
| 54 | _SYSCALL_VERIFY_MSG(!(thread->base.user_options & K_ESSENTIAL), |
Andrew Boie | 37ff5a9 | 2017-10-10 12:30:23 -0700 | [diff] [blame] | 55 | "aborting essential thread %p", thread); |
Andrew Boie | 468190a | 2017-09-29 14:00:48 -0700 | [diff] [blame] | 56 | |
| 57 | _impl_k_thread_abort((struct k_thread *)thread); |
| 58 | return 0; |
| 59 | } |
| 60 | #endif |