2014-08-09 08:38:04 +08:00
|
|
|
/****************************************************************************
|
2021-03-09 05:39:04 +08:00
|
|
|
* sched/task/exit.c
|
2014-08-09 08:38:04 +08:00
|
|
|
*
|
2020-05-17 00:05:46 +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
|
2014-08-09 08:38:04 +08:00
|
|
|
*
|
2020-05-17 00:05:46 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-08-09 08:38:04 +08:00
|
|
|
*
|
2020-05-17 00:05:46 +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.
|
2014-08-09 08:38:04 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <nuttx/fs/fs.h>
|
|
|
|
|
|
|
|
#include "task/task.h"
|
2018-11-08 21:03:30 +08:00
|
|
|
#include "group/group.h"
|
2014-08-09 08:38:04 +08:00
|
|
|
#include "sched/sched.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-06-04 14:31:23 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: _exit
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function causes the currently executing task to cease
|
|
|
|
* to exist. This is a special case of task_delete() where the task to
|
|
|
|
* be deleted is the currently executing task. It is more complex because
|
|
|
|
* a context switch must be perform to the next ready to run task.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void _exit(int status)
|
2014-08-09 08:38:04 +08:00
|
|
|
{
|
2016-02-07 07:44:41 +08:00
|
|
|
FAR struct tcb_s *tcb = this_task();
|
2014-08-09 08:38:04 +08:00
|
|
|
|
|
|
|
/* Only the lower 8-bits of status are used */
|
|
|
|
|
|
|
|
status &= 0xff;
|
|
|
|
|
2020-06-11 10:29:21 +08:00
|
|
|
#ifdef HAVE_GROUP_MEMBERS
|
2018-11-08 21:03:30 +08:00
|
|
|
/* Kill all of the children of the group, preserving only this thread.
|
|
|
|
* exit() is normally called from the main thread of the task. pthreads
|
|
|
|
* exit through a different mechanism.
|
|
|
|
*/
|
|
|
|
|
2020-06-03 19:33:56 +08:00
|
|
|
group_kill_children(tcb);
|
2018-11-08 21:03:30 +08:00
|
|
|
#endif
|
|
|
|
|
2014-08-09 08:38:04 +08:00
|
|
|
/* Perform common task termination logic. This will get called again later
|
2022-05-02 20:15:06 +08:00
|
|
|
* through logic kicked off by up_exit(). However, we need to call it here
|
2020-03-08 20:50:53 +08:00
|
|
|
* so that we can flush buffered I/O (both of which may required
|
2022-05-02 20:15:06 +08:00
|
|
|
* suspending). This will be fixed later when I/O flush is moved to libc.
|
2014-08-09 08:38:04 +08: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-05 03:42:51 +08:00
|
|
|
nxtask_exithook(tcb, status, false);
|
2014-08-09 08:38:04 +08:00
|
|
|
|
2022-05-02 20:15:06 +08:00
|
|
|
up_exit(status);
|
2014-08-09 08:38:04 +08:00
|
|
|
}
|