2015-10-02 17:43:18 -06:00
|
|
|
/****************************************************************************
|
2014-08-08 14:21:48 -06:00
|
|
|
* sched/pthread/pthread_exit.c
|
2007-02-17 23:21:28 +00: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-17 23:21:28 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-17 23:21:28 +00: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-17 23:21:28 +00:00
|
|
|
*
|
2015-10-02 17:43:18 -06:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2015-10-02 17:43:18 -06:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2015-10-02 17:43:18 -06:00
|
|
|
****************************************************************************/
|
2009-12-14 18:39:29 +00:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2012-05-02 15:36:19 +00:00
|
|
|
#include <stdint.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2007-03-29 13:29:29 +00:00
|
|
|
#include <signal.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <pthread.h>
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2011-12-26 16:24:43 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <nuttx/arch.h>
|
2017-10-07 12:16:10 -06:00
|
|
|
#include <nuttx/signal.h>
|
2021-04-22 10:41:50 +08:00
|
|
|
#include <nuttx/tls.h>
|
2011-12-26 16:24:43 +00:00
|
|
|
|
2014-08-08 17:53:55 -06:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 16:44:08 -06:00
|
|
|
#include "task/task.h"
|
2014-08-08 12:55:02 -06:00
|
|
|
#include "pthread/pthread.h"
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2015-10-02 17:43:18 -06:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Functions
|
2015-10-02 17:43:18 -06:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2015-10-02 17:43:18 -06:00
|
|
|
/****************************************************************************
|
2012-07-14 19:30:31 +00:00
|
|
|
* Name: pthread_exit
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Terminate execution of a thread started with pthread_create.
|
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2021-05-06 16:01:16 +08:00
|
|
|
* exit_value
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2015-10-02 17:43:18 -06:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2021-04-29 17:56:28 +08:00
|
|
|
void nx_pthread_exit(FAR void *exit_value)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2016-02-06 17:44:41 -06:00
|
|
|
FAR struct tcb_s *tcb = this_task();
|
2019-04-29 14:52:05 -06:00
|
|
|
sigset_t set = ALL_SIGNAL_SET;
|
2007-02-17 23:21:28 +00:00
|
|
|
int status;
|
|
|
|
|
2016-06-11 16:42:42 -06:00
|
|
|
sinfo("exit_value=%p\n", exit_value);
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2016-12-08 09:27:13 -06:00
|
|
|
DEBUGASSERT(tcb != NULL);
|
|
|
|
DEBUGASSERT((tcb->flags & TCB_FLAG_TTYPE_MASK) == TCB_FLAG_TTYPE_PTHREAD);
|
|
|
|
|
2007-03-29 13:29:29 +00:00
|
|
|
/* Block any signal actions that would awaken us while were
|
|
|
|
* are performing the JOIN handshake.
|
|
|
|
*/
|
|
|
|
|
2020-01-02 10:49:34 -06:00
|
|
|
nxsig_procmask(SIG_SETMASK, &set, NULL);
|
2007-03-29 13:29:29 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
/* Complete pending join operations */
|
|
|
|
|
|
|
|
status = pthread_completejoin(getpid(), exit_value);
|
|
|
|
if (status != OK)
|
|
|
|
{
|
2011-12-26 16:24:43 +00:00
|
|
|
/* Assume that the join completion failured because this
|
2013-04-23 16:41:43 -06:00
|
|
|
* not really a pthread. Exit by calling exit().
|
2007-02-17 23:21:28 +00:00
|
|
|
*/
|
|
|
|
|
2013-04-23 16:41:43 -06:00
|
|
|
exit(EXIT_FAILURE);
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 09:51:03 -06:00
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
|
|
|
/* Recover any mutexes still held by the canceled thread */
|
|
|
|
|
2020-06-04 02:38:39 +08:00
|
|
|
pthread_mutex_inconsistent(tcb);
|
2017-04-10 09:51:03 -06:00
|
|
|
#endif
|
|
|
|
|
2013-04-23 16:41:43 -06: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 13:42:51 -06:00
|
|
|
nxtask_exithook(tcb, EXIT_SUCCESS, false);
|
2013-04-23 16:41:43 -06:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
/* Then just exit, retaining all file descriptors and without
|
2007-03-09 15:27:47 +00:00
|
|
|
* calling atexit() functions.
|
2007-02-17 23:21:28 +00:00
|
|
|
*/
|
|
|
|
|
2013-04-23 16:41:43 -06:00
|
|
|
_exit(EXIT_SUCCESS);
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|