2008-01-30 19:49:31 +01:00
|
|
|
/****************************************************************************
|
2014-08-09 00:44:08 +02:00
|
|
|
* sched/task/task_delete.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
|
|
|
*
|
2008-01-30 19:49:31 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 19:49:31 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-01-30 19:49:31 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-04-05 17:50:01 +02:00
|
|
|
#include <nuttx/config.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-04-05 17:50:01 +02:00
|
|
|
#include <stdlib.h>
|
2021-05-18 08:59:14 +02:00
|
|
|
#include <assert.h>
|
2016-12-10 21:39:19 +01:00
|
|
|
#include <errno.h>
|
2013-04-26 00:23:30 +02:00
|
|
|
|
|
|
|
#include <nuttx/sched.h>
|
2011-04-05 17:50:01 +02: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"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 19:49:31 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-01-30 19:49:31 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-04-24 00:41:43 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: task_delete
|
|
|
|
*
|
|
|
|
* Description:
|
2017-10-16 17:07:17 +02:00
|
|
|
* This function causes a specified task to cease to exist. Its stack and
|
|
|
|
* TCB will be deallocated. This function is the companion to
|
|
|
|
* task_create(). This is the version of the function exposed to the
|
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
|
|
|
* user; it is simply a wrapper around the internal, nxtask_terminate
|
2017-10-16 17:07:17 +02:00
|
|
|
* function.
|
2013-04-24 00:41:43 +02:00
|
|
|
*
|
2017-10-16 17:07:17 +02:00
|
|
|
* The logic in this function only deletes non-running tasks. If the
|
2019-09-29 20:52:20 +02:00
|
|
|
* 'pid' parameter refers to the currently running task, then processing
|
2017-10-16 17:07:17 +02:00
|
|
|
* is redirected to exit(). This can only happen if a task calls
|
|
|
|
* task_delete()in order to delete itself.
|
2013-04-24 00:41:43 +02:00
|
|
|
*
|
2016-12-10 21:39:19 +01:00
|
|
|
* This function obeys the semantics of pthread cancellation: task
|
|
|
|
* deletion is deferred if cancellation is disabled or if deferred
|
|
|
|
* cancellation is supported (with cancellation points enabled).
|
2013-04-24 00:41:43 +02:00
|
|
|
*
|
2017-10-16 17:07:17 +02:00
|
|
|
* Input Parameters:
|
2013-04-24 00:41:43 +02:00
|
|
|
* pid - The task ID of the task to delete. A pid of zero
|
|
|
|
* signifies the calling task.
|
|
|
|
*
|
2017-10-16 17:07:17 +02:00
|
|
|
* Returned Value:
|
2016-12-10 21:39:19 +01:00
|
|
|
* OK on success; or ERROR on failure with the errno variable set
|
|
|
|
* appropriately.
|
2013-04-24 00:41:43 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int task_delete(pid_t pid)
|
|
|
|
{
|
2016-12-10 21:39:19 +01:00
|
|
|
FAR struct tcb_s *dtcb;
|
2013-04-24 00:41:43 +02:00
|
|
|
FAR struct tcb_s *rtcb;
|
2017-10-16 17:07:17 +02:00
|
|
|
int errcode;
|
2016-12-10 21:39:19 +01:00
|
|
|
int ret;
|
2013-04-24 00:41:43 +02:00
|
|
|
|
2016-12-10 21:39:19 +01:00
|
|
|
/* Check if the task to delete is the calling task: PID=0 means to delete
|
|
|
|
* the calling task. In this case, task_delete() is much like exit()
|
|
|
|
* except that it obeys the cancellation semantics.
|
|
|
|
*/
|
2013-04-24 00:41:43 +02:00
|
|
|
|
2016-02-07 00:44:41 +01:00
|
|
|
rtcb = this_task();
|
2016-12-10 21:39:19 +01:00
|
|
|
if (pid == 0)
|
2013-04-24 00:41:43 +02:00
|
|
|
{
|
2016-12-10 21:39:19 +01:00
|
|
|
pid = rtcb->pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the TCB of the task to be deleted */
|
|
|
|
|
2020-05-09 16:04:45 +02:00
|
|
|
dtcb = (FAR struct tcb_s *)nxsched_get_tcb(pid);
|
2016-12-10 21:39:19 +01:00
|
|
|
if (dtcb == NULL)
|
|
|
|
{
|
|
|
|
/* The pid does not correspond to any known thread. The task
|
|
|
|
* has probably already exited.
|
2013-04-24 00:41:43 +02:00
|
|
|
*/
|
|
|
|
|
2017-10-16 17:07:17 +02:00
|
|
|
errcode = ESRCH;
|
|
|
|
goto errout;
|
2016-12-10 21:39:19 +01:00
|
|
|
}
|
|
|
|
|
2017-10-16 17:07:17 +02:00
|
|
|
/* Only tasks and kernel threads can be deleted with this interface
|
|
|
|
* (The semantics of the call should be sufficient to prohibit this).
|
|
|
|
*/
|
2016-12-10 21:39:19 +01:00
|
|
|
|
|
|
|
DEBUGASSERT((dtcb->flags & TCB_FLAG_TTYPE_MASK) != TCB_FLAG_TTYPE_PTHREAD);
|
|
|
|
|
2017-10-16 17:07:17 +02:00
|
|
|
/* Non-privileged tasks and pthreads may not delete privileged kernel
|
|
|
|
* threads.
|
|
|
|
*
|
|
|
|
* REVISIT: We will need to look at this again in the future if/when
|
2020-02-22 19:31:14 +01:00
|
|
|
* permissions are supported and a user task might also be privileged.
|
2017-10-16 17:07:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (((rtcb->flags & TCB_FLAG_TTYPE_MASK) != TCB_FLAG_TTYPE_KERNEL) &&
|
|
|
|
((dtcb->flags & TCB_FLAG_TTYPE_MASK) == TCB_FLAG_TTYPE_KERNEL))
|
|
|
|
{
|
|
|
|
errcode = EACCES;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2020-06-06 22:31:20 +02:00
|
|
|
/* Check if the task to delete is the calling task */
|
|
|
|
|
|
|
|
if (pid == rtcb->pid)
|
|
|
|
{
|
|
|
|
/* If it is, then what we really wanted to do was exit. Note that we
|
|
|
|
* don't bother to unlock the TCB since it will be going away.
|
|
|
|
*/
|
|
|
|
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2020-06-06 18:41:47 +02:00
|
|
|
/* Notify the target if the non-cancelable or deferred cancellation set */
|
2016-12-10 21:39:19 +01:00
|
|
|
|
2020-06-06 18:41:47 +02:00
|
|
|
if (nxnotify_cancellation(dtcb))
|
2016-12-10 21:39:19 +01:00
|
|
|
{
|
|
|
|
return OK;
|
2013-04-24 00:41:43 +02:00
|
|
|
}
|
|
|
|
|
2016-12-09 19:01:18 +01:00
|
|
|
/* Otherwise, perform the asynchronous cancellation, letting
|
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_terminate() do all of the heavy lifting.
|
2016-12-09 19:01:18 +01:00
|
|
|
*/
|
2013-04-24 00:41:43 +02: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-04 20:42:51 +01:00
|
|
|
ret = nxtask_terminate(pid, false);
|
2016-12-10 21:39:19 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2017-10-16 17:07:17 +02:00
|
|
|
errcode = -ret;
|
|
|
|
goto errout;
|
2016-12-10 21:39:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
2017-10-16 17:07:17 +02:00
|
|
|
|
|
|
|
errout:
|
|
|
|
set_errno(errcode);
|
|
|
|
return ERROR;
|
2013-04-24 00:41:43 +02:00
|
|
|
}
|