2013-01-07 20:35:47 +01:00
|
|
|
/****************************************************************************
|
2023-07-05 15:43:50 +02:00
|
|
|
* sched/task/task_fork.c
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
2020-05-16 17:06:29 +02: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
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* 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.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2013-01-27 20:17:56 +01:00
|
|
|
#include <sys/wait.h>
|
2013-01-07 20:35:47 +01:00
|
|
|
#include <stdint.h>
|
2016-11-19 14:30:01 +01:00
|
|
|
#include <sched.h>
|
2014-10-06 00:58:52 +02:00
|
|
|
#include <string.h>
|
2013-01-07 20:35:47 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
2013-01-07 22:41:20 +01:00
|
|
|
#include <debug.h>
|
2013-01-07 20:35:47 +01:00
|
|
|
|
2022-09-25 17:08:38 +02:00
|
|
|
#include <nuttx/queue.h>
|
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2022-04-04 12:11:06 +02:00
|
|
|
#include "environ/environ.h"
|
2014-08-08 22:06:42 +02:00
|
|
|
#include "group/group.h"
|
2014-08-09 00:44:08 +02:00
|
|
|
#include "task/task.h"
|
2022-05-27 18:43:49 +02:00
|
|
|
#include "tls/tls.h"
|
2013-01-07 20:35:47 +01:00
|
|
|
|
2023-07-05 15:43:50 +02:00
|
|
|
/* fork() requires architecture-specific support as well as waipid(). */
|
2013-02-08 23:53:14 +01:00
|
|
|
|
2023-07-05 15:43:50 +02:00
|
|
|
#ifdef CONFIG_ARCH_HAVE_FORK
|
2013-01-07 20:35:47 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2023-07-05 15:43:50 +02:00
|
|
|
* Name: nxtask_setup_fork
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2023-07-05 15:43:50 +02:00
|
|
|
* The fork() function has the same effect as posix fork(), except that the
|
|
|
|
* behavior is undefined if the process created by fork() either modifies
|
2013-01-07 20:35:47 +01:00
|
|
|
* any data other than a variable of type pid_t used to store the return
|
2023-07-05 15:43:50 +02:00
|
|
|
* value from fork(), or returns from the function in which fork() was
|
2013-01-07 20:35:47 +01:00
|
|
|
* called, or calls any other function before successfully calling _exit()
|
2014-04-13 22:32:20 +02:00
|
|
|
* or one of the exec family of functions.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
2023-07-05 15:43:50 +02:00
|
|
|
* This function provides one step in the overall fork() sequence: It
|
2020-03-08 13:51:38 +01:00
|
|
|
* Allocates and initializes the child task's TCB. The overall sequence
|
|
|
|
* is:
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
2023-07-05 15:43:50 +02:00
|
|
|
* 1) User code calls fork(). fork() is provided in
|
2020-03-08 13:51:38 +01:00
|
|
|
* architecture-specific code.
|
2023-07-05 15:43:50 +02:00
|
|
|
* 2) fork()and calls nxtask_setup_fork().
|
|
|
|
* 3) nxtask_setup_fork() allocates and configures the child task's TCB.
|
2020-03-08 13:51:38 +01:00
|
|
|
* This consists of:
|
2013-01-07 20:35:47 +01:00
|
|
|
* - Allocation of the child task's TCB.
|
|
|
|
* - Initialization of file descriptors and streams
|
|
|
|
* - Configuration of environment variables
|
2021-04-12 17:44:08 +02:00
|
|
|
* - Allocate and initialize the stack
|
2014-09-29 18:45:44 +02:00
|
|
|
* - Setup the input parameters for the task.
|
2021-04-12 17:44:08 +02:00
|
|
|
* - Initialization of the TCB (including call to up_initial_state())
|
2023-07-05 15:43:50 +02:00
|
|
|
* 4) up_fork() provides any additional operating context. up_fork must:
|
2013-01-07 20:35:47 +01:00
|
|
|
* - Initialize special values in any CPU registers that were not
|
|
|
|
* already configured by up_initial_state()
|
2023-07-05 15:43:50 +02:00
|
|
|
* 5) up_fork() then calls nxtask_start_fork()
|
|
|
|
* 6) nxtask_start_fork() then executes the child thread.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
2014-09-29 18:45:44 +02:00
|
|
|
* Input Parameters:
|
2018-08-24 15:43:00 +02:00
|
|
|
* retaddr - Return address
|
|
|
|
* argsize - Location to return the argument size
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2023-07-05 15:43:50 +02:00
|
|
|
* Upon successful completion, nxtask_setup_fork() returns a pointer to
|
2014-09-29 18:45:44 +02:00
|
|
|
* newly allocated and initialized child task's TCB. NULL is returned
|
2013-01-07 20:35:47 +01:00
|
|
|
* on any failure and the errno is set appropriately.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-07-05 15:43:50 +02:00
|
|
|
FAR struct task_tcb_s *nxtask_setup_fork(start_t retaddr)
|
2013-01-07 20:35:47 +01:00
|
|
|
{
|
2021-04-12 17:44:08 +02:00
|
|
|
FAR struct tcb_s *ptcb = this_task();
|
2021-11-29 04:00:27 +01:00
|
|
|
FAR struct tcb_s *parent;
|
2019-07-29 23:04:39 +02:00
|
|
|
FAR struct task_tcb_s *child;
|
2021-04-12 17:44:08 +02:00
|
|
|
size_t stack_size;
|
2013-03-20 19:22:21 +01:00
|
|
|
uint8_t ttype;
|
2013-01-07 20:35:47 +01:00
|
|
|
int priority;
|
|
|
|
int ret;
|
|
|
|
|
2021-04-12 17:44:08 +02:00
|
|
|
DEBUGASSERT(retaddr != NULL);
|
2013-01-07 20:35:47 +01:00
|
|
|
|
2013-03-20 19:22:21 +01:00
|
|
|
/* Get the type of the fork'ed task (kernel or user) */
|
|
|
|
|
2021-04-12 17:44:08 +02:00
|
|
|
if ((ptcb->flags & TCB_FLAG_TTYPE_MASK) == TCB_FLAG_TTYPE_KERNEL)
|
2013-03-20 19:22:21 +01:00
|
|
|
{
|
|
|
|
/* Fork'ed from a kernel thread */
|
|
|
|
|
|
|
|
ttype = TCB_FLAG_TTYPE_KERNEL;
|
2021-11-29 04:00:27 +01:00
|
|
|
parent = ptcb;
|
2013-03-20 19:22:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Fork'ed from a user task or pthread */
|
|
|
|
|
|
|
|
ttype = TCB_FLAG_TTYPE_TASK;
|
2021-04-12 17:44:08 +02:00
|
|
|
if ((ptcb->flags & TCB_FLAG_TTYPE_MASK) == TCB_FLAG_TTYPE_TASK)
|
|
|
|
{
|
2021-11-29 04:00:27 +01:00
|
|
|
parent = ptcb;
|
2021-04-12 17:44:08 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-29 04:00:27 +01:00
|
|
|
parent = nxsched_get_tcb(ptcb->group->tg_pid);
|
2021-04-12 17:44:08 +02:00
|
|
|
if (parent == NULL)
|
|
|
|
{
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
}
|
2013-03-20 19:22:21 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 20:35:47 +01:00
|
|
|
/* Allocate a TCB for the child task. */
|
|
|
|
|
2014-09-01 01:34:44 +02:00
|
|
|
child = (FAR struct task_tcb_s *)kmm_zalloc(sizeof(struct task_tcb_s));
|
2013-01-07 20:35:47 +01:00
|
|
|
if (!child)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
serr("ERROR: Failed to allocate TCB\n");
|
2021-04-12 17:44:08 +02:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto errout;
|
2013-01-07 20:35:47 +01:00
|
|
|
}
|
|
|
|
|
2014-09-03 22:58:24 +02:00
|
|
|
/* Allocate a new task group with the same privileges as the parent */
|
2013-02-08 22:42:23 +01:00
|
|
|
|
2021-04-12 17:44:08 +02:00
|
|
|
ret = group_allocate(child, ttype);
|
2013-02-08 22:42:23 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
2022-04-04 12:11:06 +02:00
|
|
|
|
|
|
|
/* Duplicate the parent tasks environment */
|
|
|
|
|
2022-04-21 13:22:10 +02:00
|
|
|
ret = env_dup(child->cmn.group, environ);
|
2022-04-04 12:11:06 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
2013-02-08 22:42:23 +01:00
|
|
|
|
2013-01-07 20:35:47 +01:00
|
|
|
/* Associate file descriptors with the new task */
|
|
|
|
|
2013-01-27 00:49:02 +01:00
|
|
|
ret = group_setuptaskfiles(child);
|
2013-02-08 22:42:23 +01:00
|
|
|
if (ret < OK)
|
2013-01-07 20:35:47 +01:00
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
|
|
|
|
2021-04-12 17:44:08 +02:00
|
|
|
/* Allocate the stack for the TCB */
|
|
|
|
|
|
|
|
stack_size = (uintptr_t)ptcb->stack_base_ptr -
|
arch: Save sigdeliver into xcp in the case of signal self delevery
to avoid the infinite recusive dispatch:
*0 myhandler (signo=27, info=0xf3e38b9c, context=0x0) at ltp/testcases/open_posix_testsuite/conformance/interfaces/sigqueue/7-1.c:39
*1 0x58f1c39e in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:167
*2 0x58fa0664 in up_schedule_sigaction (tcb=0xf4e20f40, sigdeliver=0x58f1bab5 <nxsig_deliver>) at sim/sim_schedulesigaction.c:88
*3 0x58f19907 in nxsig_queue_action (stcb=0xf4e20f40, info=0xf4049334) at signal/sig_dispatch.c:115
*4 0x58f1b089 in nxsig_tcbdispatch (stcb=0xf4e20f40, info=0xf4049334) at signal/sig_dispatch.c:435
*5 0x58f31853 in nxsig_unmask_pendingsignal () at signal/sig_unmaskpendingsignal.c:104
*6 0x58f1ca09 in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:199
*7 0x58fa0664 in up_schedule_sigaction (tcb=0xf4e20f40, sigdeliver=0x58f1bab5 <nxsig_deliver>) at sim/sim_schedulesigaction.c:88
*8 0x58f19907 in nxsig_queue_action (stcb=0xf4e20f40, info=0xf4049304) at signal/sig_dispatch.c:115
*9 0x58f1b089 in nxsig_tcbdispatch (stcb=0xf4e20f40, info=0xf4049304) at signal/sig_dispatch.c:435
*10 0x58f31853 in nxsig_unmask_pendingsignal () at signal/sig_unmaskpendingsignal.c:104
*11 0x58f1ca09 in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:199
*12 0x58fa0664 in up_schedule_sigaction (tcb=0xf4e20f40, sigdeliver=0x58f1bab5 <nxsig_deliver>) at sim/sim_schedulesigaction.c:88
*13 0x58f19907 in nxsig_queue_action (stcb=0xf4e20f40, info=0xf40492d4) at signal/sig_dispatch.c:115
*14 0x58f1b089 in nxsig_tcbdispatch (stcb=0xf4e20f40, info=0xf40492d4) at signal/sig_dispatch.c:435
*15 0x58f31853 in nxsig_unmask_pendingsignal () at signal/sig_unmaskpendingsignal.c:104
*16 0x58f1ca09 in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:199
*17 0x58fa0664 in up_schedule_sigaction (tcb=0xf4e20f40, sigdeliver=0x58f1bab5 <nxsig_deliver>) at sim/sim_schedulesigaction.c:88
*18 0x58f19907 in nxsig_queue_action (stcb=0xf4e20f40, info=0xf40492a4) at signal/sig_dispatch.c:115
*19 0x58f1b089 in nxsig_tcbdispatch (stcb=0xf4e20f40, info=0xf40492a4) at signal/sig_dispatch.c:435
*20 0x58f31853 in nxsig_unmask_pendingsignal () at signal/sig_unmaskpendingsignal.c:104
*21 0x58f1ca09 in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:199
*22 0x58fa0664 in up_schedule_sigaction (tcb=0xf4e20f40, sigdeliver=0x58f1bab5 <nxsig_deliver>) at sim/sim_schedulesigaction.c:88
*23 0x58f19907 in nxsig_queue_action (stcb=0xf4e20f40, info=0xf4049274) at signal/sig_dispatch.c:115
*24 0x58f1b089 in nxsig_tcbdispatch (stcb=0xf4e20f40, info=0xf4049274) at signal/sig_dispatch.c:435
*25 0x58f31853 in nxsig_unmask_pendingsignal () at signal/sig_unmaskpendingsignal.c:104
*26 0x58f1ca09 in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:199
*27 0x58fa0664 in up_schedule_sigaction (tcb=0xf4e20f40, sigdeliver=0x58f1bab5 <nxsig_deliver>) at sim/sim_schedulesigaction.c:88
*28 0x58f19907 in nxsig_queue_action (stcb=0xf4e20f40, info=0xf4049244) at signal/sig_dispatch.c:115
*29 0x58f1b089 in nxsig_tcbdispatch (stcb=0xf4e20f40, info=0xf4049244) at signal/sig_dispatch.c:435
*30 0x58f31853 in nxsig_unmask_pendingsignal () at signal/sig_unmaskpendingsignal.c:104
*31 0x58f1ca09 in nxsig_deliver (stcb=0xf4e20f40) at signal/sig_deliver.c:199
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2023-05-13 16:35:21 +02:00
|
|
|
(uintptr_t)ptcb->stack_alloc_ptr + ptcb->adj_stack_size;
|
2021-04-12 17:44:08 +02:00
|
|
|
|
|
|
|
ret = up_create_stack(&child->cmn, stack_size, ttype);
|
|
|
|
if (ret < OK)
|
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup thread local storage */
|
|
|
|
|
2022-05-27 18:43:49 +02:00
|
|
|
ret = tls_dup_info(&child->cmn, parent);
|
|
|
|
if (ret < OK)
|
2021-04-12 17:44:08 +02:00
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
|
|
|
|
2013-01-07 20:35:47 +01:00
|
|
|
/* Get the priority of the parent task */
|
|
|
|
|
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2021-04-12 17:44:08 +02:00
|
|
|
priority = ptcb->base_priority; /* "Normal," unboosted priority */
|
2013-01-07 20:35:47 +01:00
|
|
|
#else
|
2021-04-12 17:44:08 +02:00
|
|
|
priority = ptcb->sched_priority; /* Current priority */
|
2013-01-07 20:35:47 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Initialize the task control block. This calls up_initial_state() */
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
sinfo("Child priority=%d start=%p\n", priority, retaddr);
|
2021-04-12 17:44:08 +02:00
|
|
|
ret = nxtask_setup_scheduler(child, priority, retaddr,
|
|
|
|
ptcb->entry.main, ttype);
|
2013-02-08 22:42:23 +01:00
|
|
|
if (ret < OK)
|
2013-01-07 20:35:47 +01:00
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
|
|
|
|
2021-04-12 17:44:08 +02:00
|
|
|
/* Setup to pass parameters to the new task */
|
|
|
|
|
2022-05-31 10:58:07 +02:00
|
|
|
ret = nxtask_setup_arguments(child, parent->group->tg_info->argv[0],
|
|
|
|
&parent->group->tg_info->argv[1]);
|
|
|
|
if (ret < OK)
|
|
|
|
{
|
|
|
|
goto errout_with_tcb;
|
|
|
|
}
|
2021-04-12 17:44:08 +02:00
|
|
|
|
|
|
|
/* Now we have enough in place that we can join the group */
|
2018-08-24 15:43:00 +02:00
|
|
|
|
2022-03-01 19:24:05 +01:00
|
|
|
group_initialize(child);
|
2016-06-11 19:59:51 +02:00
|
|
|
sinfo("parent=%p, returning child=%p\n", parent, child);
|
2013-02-07 17:58:43 +01:00
|
|
|
return child;
|
2013-01-07 20:35:47 +01:00
|
|
|
|
|
|
|
errout_with_tcb:
|
2020-05-09 16:04:45 +02:00
|
|
|
nxsched_release_tcb((FAR struct tcb_s *)child, ttype);
|
2021-04-12 17:44:08 +02:00
|
|
|
errout:
|
2013-01-07 20:35:47 +01:00
|
|
|
set_errno(-ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2023-07-05 15:43:50 +02:00
|
|
|
* Name: nxtask_start_fork
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2023-07-05 15:43:50 +02:00
|
|
|
* The fork() function has the same effect as fork(), except that the
|
|
|
|
* behavior is undefined if the process created by fork() either modifies
|
2013-01-07 20:35:47 +01:00
|
|
|
* any data other than a variable of type pid_t used to store the return
|
2023-07-05 15:43:50 +02:00
|
|
|
* value from fork(), or returns from the function in which fork() was
|
2013-01-07 20:35:47 +01:00
|
|
|
* called, or calls any other function before successfully calling _exit()
|
2014-04-13 22:32:20 +02:00
|
|
|
* or one of the exec family of functions.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
2023-07-05 15:43:50 +02:00
|
|
|
* This function provides one step in the overall fork() sequence: It
|
2013-01-07 20:35:47 +01:00
|
|
|
* starts execution of the previously initialized TCB. The overall
|
|
|
|
* sequence is:
|
|
|
|
*
|
2023-07-05 15:43:50 +02:00
|
|
|
* 1) User code calls fork()
|
|
|
|
* 2) Architecture-specific code provides fork()and calls
|
|
|
|
* nxtask_setup_fork().
|
|
|
|
* 3) nxtask_setup_fork() allocates and configures the child task's TCB.
|
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
|
|
|
* This consists of:
|
2013-01-07 20:35:47 +01:00
|
|
|
* - Allocation of the child task's TCB.
|
|
|
|
* - Initialization of file descriptors and streams
|
|
|
|
* - Configuration of environment variables
|
2021-04-12 17:44:08 +02:00
|
|
|
* - Allocate and initialize the stack
|
2014-09-29 18:45:44 +02:00
|
|
|
* - Setup the input parameters for the task.
|
2021-04-12 17:44:08 +02:00
|
|
|
* - Initialization of the TCB (including call to up_initial_state())
|
2023-07-05 15:43:50 +02:00
|
|
|
* 4) fork() provides any additional operating context. fork must:
|
2013-01-07 20:35:47 +01:00
|
|
|
* - Initialize special values in any CPU registers that were not
|
|
|
|
* already configured by up_initial_state()
|
2023-07-05 15:43:50 +02:00
|
|
|
* 5) fork() then calls nxtask_start_fork()
|
|
|
|
* 6) nxtask_start_fork() then executes the child thread.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
2014-09-29 18:45:44 +02:00
|
|
|
* Input Parameters:
|
2023-07-05 15:43:50 +02:00
|
|
|
* child - The task_tcb_s struct instance that created by
|
|
|
|
* nxtask_setup_fork() method
|
|
|
|
* wait_child - whether need to wait until the child is running finished
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2023-07-05 15:43:50 +02:00
|
|
|
* Upon successful completion, fork() returns 0 to the child process and
|
2013-01-07 20:35:47 +01:00
|
|
|
* returns the process ID of the child process to the parent process.
|
|
|
|
* Otherwise, -1 is returned to the parent, no child process is created,
|
2014-04-13 22:32:20 +02:00
|
|
|
* and errno is set to indicate the error.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-07-05 15:43:50 +02:00
|
|
|
pid_t nxtask_start_fork(FAR struct task_tcb_s *child)
|
2013-01-07 20:35:47 +01:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
|
2021-04-12 17:44:08 +02:00
|
|
|
sinfo("Starting Child TCB=%p\n", child);
|
2013-01-07 20:35:47 +01:00
|
|
|
DEBUGASSERT(child);
|
|
|
|
|
|
|
|
/* Get the assigned pid before we start the task */
|
|
|
|
|
2022-03-21 23:47:09 +01:00
|
|
|
pid = child->cmn.pid;
|
2013-01-07 20:35:47 +01:00
|
|
|
|
2016-11-19 14:30:01 +01:00
|
|
|
/* Eliminate a race condition by disabling pre-emption. The child task
|
|
|
|
* can be instantiated, but cannot run until we call waitpid(). This
|
2017-05-11 21:35:56 +02:00
|
|
|
* assures us that we cannot miss the death-of-child signal (only
|
2016-11-19 14:30:01 +01:00
|
|
|
* needed in the SMP case).
|
|
|
|
*/
|
|
|
|
|
|
|
|
sched_lock();
|
|
|
|
|
2013-01-07 20:35:47 +01:00
|
|
|
/* Activate the task */
|
|
|
|
|
2020-06-04 14:19:40 +02:00
|
|
|
nxtask_activate((FAR struct tcb_s *)child);
|
2013-01-07 20:35:47 +01:00
|
|
|
|
2016-11-19 14:30:01 +01:00
|
|
|
sched_unlock();
|
2013-01-07 20:35:47 +01:00
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2023-07-05 15:43:50 +02:00
|
|
|
* Name: nxtask_abort_fork
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2023-07-05 15:43:50 +02:00
|
|
|
* Recover from any errors after nxtask_setup_fork() was called.
|
2013-01-07 20:35:47 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-07-05 15:43:50 +02:00
|
|
|
void nxtask_abort_fork(FAR struct task_tcb_s *child, int errcode)
|
2013-01-07 20:35:47 +01:00
|
|
|
{
|
2020-05-16 17:06:29 +02:00
|
|
|
/* The TCB was added to the active task list by nxtask_setup_scheduler() */
|
2013-01-07 20:35:47 +01:00
|
|
|
|
2022-08-30 03:36:44 +02:00
|
|
|
dq_rem((FAR dq_entry_t *)child, &g_inactivetasks);
|
2013-01-07 20:35:47 +01:00
|
|
|
|
|
|
|
/* Release the TCB */
|
|
|
|
|
2020-05-09 16:04:45 +02:00
|
|
|
nxsched_release_tcb((FAR struct tcb_s *)child,
|
2021-04-12 17:44:08 +02:00
|
|
|
child->cmn.flags & TCB_FLAG_TTYPE_MASK);
|
2013-01-07 20:35:47 +01:00
|
|
|
set_errno(errcode);
|
2013-01-15 16:40:18 +01:00
|
|
|
}
|
2013-02-08 23:53:14 +01:00
|
|
|
|
2023-07-05 15:43:50 +02:00
|
|
|
#endif /* CONFIG_ARCH_HAVE_FORK */
|