blob: 0298b93e45249e66370fa9020ca688a5e6306108 [file] [log] [blame]
Benjamin Walsh456c6da2016-09-02 18:55:39 -04001/*
2 * Copyright (c) 2016 Wind River Systems, Inc.
3 *
David B. Kinderac74d8b2017-01-18 17:01:01 -08004 * SPDX-License-Identifier: Apache-2.0
Benjamin Walsh456c6da2016-09-02 18:55:39 -04005 */
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 Walshf6ca7de2016-11-08 10:36:50 -050014#include <kernel_structs.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040015#include <nano_internal.h>
16#include <string.h>
17#include <toolchain.h>
Anas Nashif397d29d2017-06-17 11:30:47 -040018#include <linker/sections.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040019#include <wait_q.h>
Benjamin Walshb4b108d2016-10-13 10:31:48 -040020#include <ksched.h>
Andrew Boie8eaff5d2017-08-28 16:02:24 -070021#include <misc/__assert.h>
Andrew Boie468190a2017-09-29 14:00:48 -070022#include <syscall_handler.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040023
Benjamin Walshb7ef0cb2016-10-05 17:32:01 -040024extern void _k_thread_single_abort(struct k_thread *thread);
Benjamin Walsh456c6da2016-09-02 18:55:39 -040025
Benjamin Walshcef368f2016-12-17 13:01:49 -050026#if !defined(CONFIG_ARCH_HAS_THREAD_ABORT)
Andrew Boie468190a2017-09-29 14:00:48 -070027void _impl_k_thread_abort(k_tid_t thread)
Benjamin Walsh456c6da2016-09-02 18:55:39 -040028{
29 unsigned int key;
30
31 key = irq_lock();
32
Andrew Boie8eaff5d2017-08-28 16:02:24 -070033 __ASSERT(!(thread->base.user_options & K_ESSENTIAL),
34 "essential thread aborted");
35
Benjamin Walsh456c6da2016-09-02 18:55:39 -040036 _k_thread_single_abort(thread);
Allan Stephens4aef71b2016-10-25 12:45:05 -050037 _thread_monitor_exit(thread);
Benjamin Walsh456c6da2016-09-02 18:55:39 -040038
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 Boie468190a2017-09-29 14:00:48 -070048
49#ifdef CONFIG_USERSPACE
Leandro Pereira6f99bdb2017-10-13 14:00:22 -070050_SYSCALL_HANDLER(k_thread_abort, thread_p)
Andrew Boie468190a2017-09-29 14:00:48 -070051{
52 struct k_thread *thread = (struct k_thread *)thread_p;
Andrew Boie225e4c02017-10-12 09:54:26 -070053 _SYSCALL_OBJ(thread, K_OBJ_THREAD);
54 _SYSCALL_VERIFY_MSG(!(thread->base.user_options & K_ESSENTIAL),
Andrew Boie37ff5a92017-10-10 12:30:23 -070055 "aborting essential thread %p", thread);
Andrew Boie468190a2017-09-29 14:00:48 -070056
57 _impl_k_thread_abort((struct k_thread *)thread);
58 return 0;
59}
60#endif