2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2014-08-09 04:21:48 +08:00
|
|
|
* sched/pthread/pthread_exit.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08: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 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08: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 07:21:28 +08:00
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2009-12-15 02:39:29 +08:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-05-02 23:36:19 +08:00
|
|
|
#include <stdint.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2007-03-29 21:29:29 +08:00
|
|
|
#include <signal.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <pthread.h>
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2011-12-27 00:24:43 +08:00
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <nuttx/arch.h>
|
2017-10-08 02:16:10 +08:00
|
|
|
#include <nuttx/signal.h>
|
2011-12-27 00:24:43 +08:00
|
|
|
|
2014-08-09 07:53:55 +08:00
|
|
|
#include "sched/sched.h"
|
2014-08-09 06:44:08 +08:00
|
|
|
#include "task/task.h"
|
2014-08-09 02:55:02 +08:00
|
|
|
#include "pthread/pthread.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Public Functions
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2012-07-15 03:30:31 +08:00
|
|
|
* Name: pthread_exit
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Terminate execution of a thread started with pthread_create.
|
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2021-05-06 16:01:16 +08:00
|
|
|
* exit_value
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2021-04-29 17:56:28 +08:00
|
|
|
void nx_pthread_exit(FAR void *exit_value)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2016-02-07 07:44:41 +08:00
|
|
|
FAR struct tcb_s *tcb = this_task();
|
2023-03-24 04:36:14 +08:00
|
|
|
sigset_t set;
|
2007-02-18 07:21:28 +08:00
|
|
|
int status;
|
|
|
|
|
2016-06-12 06:42:42 +08:00
|
|
|
sinfo("exit_value=%p\n", exit_value);
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2016-12-08 23:27:13 +08:00
|
|
|
DEBUGASSERT(tcb != NULL);
|
|
|
|
|
2007-03-29 21:29:29 +08:00
|
|
|
/* Block any signal actions that would awaken us while were
|
|
|
|
* are performing the JOIN handshake.
|
|
|
|
*/
|
|
|
|
|
2023-03-24 04:36:14 +08:00
|
|
|
sigfillset(&set);
|
2020-01-03 00:49:34 +08:00
|
|
|
nxsig_procmask(SIG_SETMASK, &set, NULL);
|
2007-03-29 21:29:29 +08:00
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
/* Complete pending join operations */
|
|
|
|
|
2023-02-01 18:05:58 +08:00
|
|
|
status = pthread_completejoin(nxsched_gettid(), exit_value);
|
2007-02-18 07:21:28 +08:00
|
|
|
if (status != OK)
|
|
|
|
{
|
2011-12-27 00:24:43 +08:00
|
|
|
/* Assume that the join completion failured because this
|
2013-04-24 06:41:43 +08:00
|
|
|
* not really a pthread. Exit by calling exit().
|
2007-02-18 07:21:28 +08:00
|
|
|
*/
|
|
|
|
|
2023-02-16 22:57:24 +08:00
|
|
|
_exit(EXIT_FAILURE);
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
|
|
|
|
2013-04-24 06:41:43 +08:00
|
|
|
/* Perform common task termination logic. This will get called again later
|
2022-12-14 15:37:22 +08:00
|
|
|
* through logic kicked off by up_exit().
|
|
|
|
*
|
|
|
|
* REVISIT: Tt should not be necessary to call this here, but releasing the
|
|
|
|
* task group (especially the group file list) requires that it is done
|
|
|
|
* here.
|
|
|
|
*
|
|
|
|
* The reason? up_exit removes the current process from the ready-to-run
|
|
|
|
* list and trying to execute code that depends on this_task() crashes at
|
|
|
|
* once, or does something very naughty.
|
2013-04-24 06:41:43 +08:00
|
|
|
*/
|
|
|
|
|
2022-12-14 15:37:22 +08:00
|
|
|
nxtask_exithook(tcb, status);
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2022-05-25 14:16:22 +08:00
|
|
|
up_exit(EXIT_SUCCESS);
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|