2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2014-08-08 22:21:48 +02:00
|
|
|
* sched/pthread/pthread_exit.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2017-10-07 20:16:10 +02:00
|
|
|
* Copyright (C) 2007, 2009, 2011-2013, 2017 Gregory Nutt. All rights reserved.
|
2011-12-26 17:24:43 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +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.
|
2009-12-14 19:39:29 +01:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* 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.
|
|
|
|
*
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2009-12-14 19:39:29 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-05-02 17:36:19 +02:00
|
|
|
#include <stdint.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2007-03-29 15:29:29 +02:00
|
|
|
#include <signal.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2011-12-26 17:24:43 +01:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <nuttx/arch.h>
|
2017-10-07 20:16:10 +02:00
|
|
|
#include <nuttx/signal.h>
|
2011-12-26 17:24:43 +01:00
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2014-08-09 00:44:08 +02:00
|
|
|
#include "task/task.h"
|
2014-08-08 20:55:02 +02:00
|
|
|
#include "pthread/pthread.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: pthread_exit
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Terminate execution of a thread started with pthread_create.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-02-18 00:21:28 +01:00
|
|
|
* exit_valie
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-27 22:17:21 +01:00
|
|
|
void pthread_exit(FAR void *exit_value)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2016-02-07 00:44:41 +01:00
|
|
|
FAR struct tcb_s *tcb = this_task();
|
2019-04-29 22:52:05 +02:00
|
|
|
sigset_t set = ALL_SIGNAL_SET;
|
2007-02-18 00:21:28 +01:00
|
|
|
int status;
|
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("exit_value=%p\n", exit_value);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-12-08 16:27:13 +01:00
|
|
|
DEBUGASSERT(tcb != NULL);
|
|
|
|
DEBUGASSERT((tcb->flags & TCB_FLAG_TTYPE_MASK) == TCB_FLAG_TTYPE_PTHREAD);
|
|
|
|
|
2007-03-29 15:29:29 +02:00
|
|
|
/* Block any signal actions that would awaken us while were
|
|
|
|
* are performing the JOIN handshake.
|
|
|
|
*/
|
|
|
|
|
2019-04-29 22:52:05 +02:00
|
|
|
(void)nxsig_procmask(SIG_SETMASK, &set, NULL);
|
2007-03-29 15:29:29 +02:00
|
|
|
|
2016-12-09 19:01:18 +01:00
|
|
|
#ifdef CONFIG_CANCELLATION_POINTS
|
2017-08-15 01:19:27 +02:00
|
|
|
/* Mark the pthread as non-cancelable to avoid additional calls to
|
|
|
|
* pthread_exit() due to any cancellation point logic that might get
|
|
|
|
* kicked off by actions taken during pthread_exit processing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
tcb->flags |= TCB_FLAG_NONCANCELABLE;
|
|
|
|
tcb->flags &= ~TCB_FLAG_CANCEL_PENDING;
|
|
|
|
tcb->cpcount = 0;
|
2016-12-09 19:01:18 +01:00
|
|
|
#endif
|
|
|
|
|
2016-12-08 16:27:13 +01:00
|
|
|
#ifdef CONFIG_PTHREAD_CLEANUP
|
2017-08-15 01:19:27 +02:00
|
|
|
/* Perform any stack pthread clean-up callbacks */
|
2016-12-08 16:27:13 +01:00
|
|
|
|
2017-08-15 01:19:27 +02:00
|
|
|
pthread_cleanup_popall((FAR struct pthread_tcb_s *)tcb);
|
2016-12-08 16:27:13 +01:00
|
|
|
#endif
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
/* Complete pending join operations */
|
|
|
|
|
|
|
|
status = pthread_completejoin(getpid(), exit_value);
|
|
|
|
if (status != OK)
|
|
|
|
{
|
2011-12-26 17:24:43 +01:00
|
|
|
/* Assume that the join completion failured because this
|
2013-04-24 00:41:43 +02:00
|
|
|
* not really a pthread. Exit by calling exit().
|
2007-02-18 00:21:28 +01:00
|
|
|
*/
|
|
|
|
|
2013-04-24 00:41:43 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
2017-04-10 17:51:03 +02:00
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
|
|
|
/* Recover any mutexes still held by the canceled thread */
|
|
|
|
|
|
|
|
pthread_mutex_inconsistent((FAR struct pthread_tcb_s *)tcb);
|
|
|
|
#endif
|
|
|
|
|
2013-04-24 00:41:43 +02:00
|
|
|
/* Perform common task termination logic. This will get called again later
|
|
|
|
* through logic kicked off by _exit(). However, we need to call it before
|
|
|
|
* calling _exit() in order certain operations if this is the last thread
|
|
|
|
* of a task group: (2) To handle atexit() and on_exit() callbacks and
|
|
|
|
* (2) so that we can flush buffered I/O (which may required suspending).
|
|
|
|
*/
|
|
|
|
|
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_exithook(tcb, EXIT_SUCCESS, false);
|
2013-04-24 00:41:43 +02:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
/* Then just exit, retaining all file descriptors and without
|
2007-03-09 16:27:47 +01:00
|
|
|
* calling atexit() functions.
|
2007-02-18 00:21:28 +01:00
|
|
|
*/
|
|
|
|
|
2013-04-24 00:41:43 +02:00
|
|
|
_exit(EXIT_SUCCESS);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2007-02-27 22:17:21 +01:00
|
|
|
|