2008-01-30 19:49:31 +01:00
|
|
|
/****************************************************************************
|
2014-08-09 00:44:08 +02:00
|
|
|
* sched/task/task_exit.c
|
2008-01-30 19:49:31 +01:00
|
|
|
*
|
2018-02-07 02:06:33 +01:00
|
|
|
* Copyright (C) 2008-2009, 2012-2014, 2016, 2018 Gregory Nutt. All
|
|
|
|
* rights reserved.
|
2012-01-31 21:32:49 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2008-01-30 19:49:31 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sched.h>
|
2014-08-09 00:44:08 +02:00
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2014-08-09 00:44:08 +02:00
|
|
|
|
2008-01-30 19:49:31 +01:00
|
|
|
#ifndef CONFIG_DISABLE_SIGNALS
|
2017-08-15 01:19:27 +02:00
|
|
|
# include "signal/signal.h"
|
2008-01-30 19:49:31 +01:00
|
|
|
#endif
|
2014-08-09 00:44:08 +02:00
|
|
|
#include "task/task.h"
|
2008-01-30 19:49:31 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-04 20:42:51 +01:00
|
|
|
* Name: nxtask_exit
|
2008-01-30 19:49:31 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2013-04-19 00:15:20 +02:00
|
|
|
* This is a part of the logic used to implement _exit(). The full
|
|
|
|
* implementation of _exit() is architecture-dependent. The _exit()
|
|
|
|
* function also implements the bottom half of exit() and pthread_exit().
|
|
|
|
*
|
2008-01-30 19:49:31 +01:00
|
|
|
* This function causes the currently running task (i.e., the task at the
|
2013-04-19 00:15:20 +02:00
|
|
|
* head of the ready-to-run list) to cease to exist. This function should
|
|
|
|
* never be called from normal user code, but only from the architecture-
|
|
|
|
* specific implementation of exit.
|
|
|
|
*
|
|
|
|
* Threads/tasks could also be terminated via pthread_cancel, task_delete(),
|
|
|
|
* and task_restart(). In the last two cases, the task will be terminated
|
|
|
|
* as though exit() were called.
|
2008-01-30 19:49:31 +01:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2008-01-30 19:49:31 +01:00
|
|
|
* None
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2008-01-30 19:49:31 +01:00
|
|
|
* OK on success; or ERROR on failure
|
|
|
|
*
|
2018-11-08 14:03:30 +01:00
|
|
|
* Assumptions:
|
2017-02-24 17:07:23 +01:00
|
|
|
* Executing within a critical section established by the caller.
|
2013-01-12 20:58:45 +01:00
|
|
|
*
|
2008-01-30 19:49:31 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-04 20:42:51 +01:00
|
|
|
int nxtask_exit(void)
|
2008-01-30 19:49:31 +01:00
|
|
|
{
|
2018-02-07 02:06:33 +01:00
|
|
|
FAR struct tcb_s *dtcb;
|
2013-02-04 19:46:28 +01:00
|
|
|
FAR struct tcb_s *rtcb;
|
2014-02-18 18:50:32 +01:00
|
|
|
int ret;
|
2018-02-07 02:06:33 +01:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
/* Get the current CPU. By assumption, we are within a critical section
|
|
|
|
* and, hence, the CPU index will remain stable.
|
|
|
|
*
|
|
|
|
* Avoid using this_task() because it may assume a state that is not
|
|
|
|
* appropriate for an exiting task.
|
|
|
|
*/
|
|
|
|
|
|
|
|
cpu = this_cpu();
|
|
|
|
dtcb = current_task(cpu);
|
|
|
|
#else
|
|
|
|
dtcb = this_task();
|
|
|
|
#endif
|
2008-01-30 19:49:31 +01:00
|
|
|
|
|
|
|
/* Remove the TCB of the current task from the ready-to-run list. A context
|
|
|
|
* switch will definitely be necessary -- that must be done by the
|
|
|
|
* architecture-specific logic.
|
|
|
|
*
|
|
|
|
* sched_removereadytorun will mark the task at the head of the ready-to-run
|
|
|
|
* with state == TSTATE_TASK_RUNNING
|
|
|
|
*/
|
|
|
|
|
|
|
|
(void)sched_removereadytorun(dtcb);
|
2018-02-07 02:06:33 +01:00
|
|
|
|
|
|
|
/* Get the new task at the head of the ready to run list */
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
rtcb = current_task(cpu);
|
|
|
|
#else
|
2016-02-07 00:44:41 +01:00
|
|
|
rtcb = this_task();
|
2018-02-07 02:06:33 +01:00
|
|
|
#endif
|
2008-01-30 19:49:31 +01:00
|
|
|
|
2018-01-31 03:23:22 +01:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
/* Because clearing the global IRQ control in sched_removereadytorun()
|
|
|
|
* was moved to sched_resume_scheduler(). So call the API here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
sched_resume_scheduler(rtcb);
|
|
|
|
#endif
|
|
|
|
|
2013-01-12 20:58:45 +01:00
|
|
|
/* We are now in a bad state -- the head of the ready to run task list
|
2008-01-30 19:49:31 +01:00
|
|
|
* does not correspond to the thread that is running. Disabling pre-
|
|
|
|
* emption on this TCB and marking the new ready-to-run task as not
|
|
|
|
* running (see, for example, get_errno_ptr()).
|
2013-01-13 01:35:47 +01:00
|
|
|
*
|
|
|
|
* We disable pre-emption here by directly incrementing the lockcount
|
|
|
|
* (vs. calling sched_lock()).
|
2008-01-30 19:49:31 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-13 01:35:47 +01:00
|
|
|
rtcb->lockcount++;
|
2016-02-12 21:55:31 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
/* Make sure that the system knows about the locked state */
|
|
|
|
|
2016-02-17 20:20:01 +01:00
|
|
|
spin_setbit(&g_cpu_lockset, this_cpu(), &g_cpu_locksetlock,
|
|
|
|
&g_cpu_schedlock);
|
2016-02-12 21:55:31 +01:00
|
|
|
#endif
|
|
|
|
|
2008-01-30 19:49:31 +01:00
|
|
|
rtcb->task_state = TSTATE_TASK_READYTORUN;
|
|
|
|
|
2013-04-24 00:41:43 +02:00
|
|
|
/* Move the TCB to the specified blocked task list and delete it. Calling
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-04 20:42:51 +01:00
|
|
|
* nxtask_terminate with non-blocking true will suppress atexit() and on-exit()
|
2013-04-24 00:41:43 +02:00
|
|
|
* calls and will cause buffered I/O to fail to be flushed. The former
|
|
|
|
* is required _exit() behavior; the latter is optional _exit() behavior.
|
|
|
|
*/
|
2008-01-30 19:49:31 +01:00
|
|
|
|
|
|
|
sched_addblocked(dtcb, TSTATE_TASK_INACTIVE);
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-04 20:42:51 +01:00
|
|
|
ret = nxtask_terminate(dtcb->pid, true);
|
2008-01-30 19:49:31 +01:00
|
|
|
rtcb->task_state = TSTATE_TASK_RUNNING;
|
|
|
|
|
2016-03-23 01:19:57 +01:00
|
|
|
/* Decrement the lockcount on rctb. */
|
2008-01-30 19:49:31 +01:00
|
|
|
|
2013-01-12 20:58:45 +01:00
|
|
|
rtcb->lockcount--;
|
2016-02-12 21:55:31 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
if (rtcb->lockcount == 0)
|
|
|
|
{
|
|
|
|
/* Make sure that the system knows about the unlocked state */
|
|
|
|
|
2016-02-17 20:20:01 +01:00
|
|
|
spin_clrbit(&g_cpu_lockset, this_cpu(), &g_cpu_locksetlock,
|
|
|
|
&g_cpu_schedlock);
|
2016-02-12 21:55:31 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-03-23 01:19:57 +01:00
|
|
|
/* If there are any pending tasks, then add them to the ready-to-run
|
|
|
|
* task list now
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (g_pendingtasks.head != NULL)
|
|
|
|
{
|
|
|
|
(void)sched_mergepending();
|
|
|
|
}
|
|
|
|
|
2014-02-18 18:50:32 +01:00
|
|
|
return ret;
|
2008-01-30 19:49:31 +01:00
|
|
|
}
|