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
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
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>
|
2021-05-18 08:59:14 +02:00
|
|
|
#include <assert.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#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>
|
2021-04-22 04:41:50 +02:00
|
|
|
#include <nuttx/tls.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:
|
2021-05-06 10:01:16 +02:00
|
|
|
* exit_value
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2021-04-29 11:56:28 +02:00
|
|
|
void nx_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.
|
|
|
|
*/
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
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
|
|
|
|
|
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 */
|
|
|
|
|
2020-06-03 20:38:39 +02:00
|
|
|
pthread_mutex_inconsistent(tcb);
|
2017-04-10 17:51:03 +02:00
|
|
|
#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
|
|
|
}
|