2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 20:55:02 +02:00
|
|
|
* sched/signal/sig_action.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
* Copyright (C) 2007-2009, 2013, 2016-2017 Gregory Nutt. All rights
|
|
|
|
* reserved.
|
2012-07-14 21:30:31 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2008-01-31 18:59:22 +01:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-14 20:30:18 +01:00
|
|
|
#include <stdint.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <signal.h>
|
|
|
|
#include <queue.h>
|
|
|
|
#include <sched.h>
|
2013-01-23 23:23:46 +01:00
|
|
|
#include <errno.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
#include <nuttx/irq.h>
|
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 22:06:42 +02:00
|
|
|
#include "group/group.h"
|
2014-08-08 20:44:44 +02:00
|
|
|
#include "signal/signal.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2015-04-08 14:47:36 +02:00
|
|
|
* Pre-processor Definitions
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 03:19:19 +01:00
|
|
|
#define COPY_SIGACTION(t,f) \
|
|
|
|
{ (t)->sa_sigaction = (f)->sa_sigaction; \
|
|
|
|
(t)->sa_mask = (f)->sa_mask; \
|
|
|
|
(t)->sa_flags = (f)->sa_flags; }
|
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Private Functions
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
* Name: nxsig_alloc_action
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Allocate a new element for a sigaction queue
|
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
static FAR sigactq_t *nxsig_alloc_action(void)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2007-02-27 22:17:21 +01:00
|
|
|
FAR sigactq_t *sigact;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Try to get the signal action structure from the free list */
|
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
sigact = (FAR sigactq_t *)sq_remfirst(&g_sigfreeaction);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Check if we got one. */
|
|
|
|
|
|
|
|
if (!sigact)
|
|
|
|
{
|
|
|
|
/* Add another block of signal actions to the list */
|
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
nxsig_alloc_actionblock();
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* And try again */
|
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
sigact = (FAR sigactq_t *)sq_remfirst(&g_sigfreeaction);
|
2013-04-25 23:19:59 +02:00
|
|
|
ASSERT(sigact);
|
2012-07-14 21:30:31 +02:00
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
return sigact;
|
|
|
|
}
|
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: sigaction
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2008-01-31 18:59:22 +01:00
|
|
|
* This function allows the calling process to examine and/or specify the
|
|
|
|
* action to be associated with a specific signal.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* The structure sigaction, used to describe an action to be taken, is
|
|
|
|
* defined to include the following members:
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* - sa_u.sa_handler: Pointer to a signal-catching function
|
|
|
|
* - sa_u.sa_sigaction: Alternative form of the signal-catching function
|
|
|
|
* - sa_mask: An additional set of signals to be blocked during execution
|
|
|
|
* of a signal catching function
|
|
|
|
* - sa_flags. Special flags to affect the behavior of a signal.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* If the argument 'act' is not NULL, it points to a structure specifying
|
|
|
|
* the action to be associated with the specified signal. If the argument
|
|
|
|
* 'oact' is not NULL, the action previously associated with the signal
|
|
|
|
* is stored in the location pointed to by the argument 'oact.'
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* When a signal is caught by a signal-catching function installed by
|
|
|
|
* sigaction() function, a new signal mask is calculated and installed for
|
|
|
|
* the duration of the signal-catching function. This mask is formed by
|
|
|
|
* taking the union of the current signal mask and the value of the
|
|
|
|
* sa_mask for the signal being delivered and then including the signal
|
|
|
|
* being delivered. If and when the user's signal handler returns, the
|
|
|
|
* original signal mask is restored.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* Once an action is installed for a specific signal, it remains installed
|
|
|
|
* until another action is explicitly requested by another call to sigaction().
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-02-18 00:21:28 +01:00
|
|
|
* sig - Signal of interest
|
|
|
|
* act - Location of new handler
|
|
|
|
* oact - Location to store only handler
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-02-18 00:21:28 +01:00
|
|
|
* 0 (OK), or -1 (ERROR) if the signal number is invalid.
|
|
|
|
* (errno is not set)
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
|
|
|
* POSIX Compatibility:
|
2013-01-23 23:23:46 +01:00
|
|
|
* - There are no default actions so the special value SIG_DFL is treated
|
|
|
|
* like SIG_IGN.
|
|
|
|
* - All sa_flags in struct sigaction of act input are ignored (all
|
2015-05-24 01:08:35 +02:00
|
|
|
* treated like SA_SIGINFO). The one exception is if CONFIG_SCHED_CHILD_STATUS
|
2013-01-23 23:23:46 +01:00
|
|
|
* is defined; then SA_NOCLDWAIT is supported but only for SIGCHLD
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
int sigaction(int signo, FAR const struct sigaction *act, FAR struct sigaction *oact)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2016-02-07 00:44:41 +01:00
|
|
|
FAR struct tcb_s *rtcb = this_task();
|
2016-02-18 15:34:11 +01:00
|
|
|
FAR struct task_group_s *group;
|
2007-02-27 22:17:21 +01:00
|
|
|
FAR sigactq_t *sigact;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/* Since sigactions can only be installed from the running thread of
|
|
|
|
* execution, no special precautions should be necessary.
|
|
|
|
*/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-02-18 15:34:11 +01:00
|
|
|
DEBUGASSERT(rtcb != NULL && rtcb->group != NULL);
|
|
|
|
group = rtcb->group;
|
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* Verify the signal number */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
if (!GOOD_SIGNO(signo))
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2013-01-23 23:23:46 +01:00
|
|
|
set_errno(EINVAL);
|
|
|
|
return ERROR;
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-02-18 15:34:11 +01:00
|
|
|
/* Find the signal in the signal action queue */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
sigact = nxsig_find_action(group, signo);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* Return the old sigaction value if so requested */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
if (oact)
|
|
|
|
{
|
|
|
|
if (sigact)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2013-01-23 23:23:46 +01:00
|
|
|
COPY_SIGACTION(oact, &sigact->act);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* There isn't an old value */
|
|
|
|
|
|
|
|
oact->sa_u._sa_handler = NULL;
|
|
|
|
oact->sa_mask = NULL_SIGNAL_SET;
|
|
|
|
oact->sa_flags = 0;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2013-01-23 23:23:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If the argument act is a null pointer, signal handling is unchanged;
|
|
|
|
* thus, the call can be used to enquire about the current handling of
|
2014-04-13 22:32:20 +02:00
|
|
|
* a given signal.
|
2013-01-23 23:23:46 +01:00
|
|
|
*/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
if (!act)
|
|
|
|
{
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_SCHED_HAVE_PARENT) && defined(CONFIG_SCHED_CHILD_STATUS)
|
|
|
|
|
|
|
|
/* Handle a special case. Retention of child status can be suppressed
|
|
|
|
* if signo == SIGCHLD and sa_flags == SA_NOCLDWAIT.
|
|
|
|
*
|
|
|
|
* POSIX.1 leaves it unspecified whether a SIGCHLD signal is generated
|
|
|
|
* when a child process terminates. In NuttX, a SIGCHLD signal is
|
|
|
|
* generated in this case; but in some other implementations, it may not
|
|
|
|
* be.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (signo == SIGCHLD && (act->sa_flags & SA_NOCLDWAIT) != 0)
|
|
|
|
{
|
|
|
|
irqstate_t flags;
|
|
|
|
|
|
|
|
/* We do require a critical section to muck with the TCB values that
|
|
|
|
* can be modified by the child thread.
|
2007-02-18 00:21:28 +01:00
|
|
|
*/
|
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
flags = enter_critical_section();
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* Mark that status should be not be retained */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-25 18:23:38 +01:00
|
|
|
rtcb->group->tg_flags |= GROUP_FLAG_NOCLDWAIT;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* Free all pending exit status */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-26 18:28:20 +01:00
|
|
|
group_removechildren(rtcb->group);
|
2016-02-14 15:17:46 +01:00
|
|
|
leave_critical_section(flags);
|
2013-01-23 23:23:46 +01:00
|
|
|
}
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* Handle the case where no sigaction is supplied (SIG_IGN) */
|
|
|
|
|
|
|
|
if (act->sa_u._sa_handler == SIG_IGN)
|
|
|
|
{
|
2013-01-25 00:18:32 +01:00
|
|
|
/* Do we still have a sigaction container from the previous setting? */
|
2013-01-23 23:23:46 +01:00
|
|
|
|
2013-01-25 00:18:32 +01:00
|
|
|
if (sigact)
|
|
|
|
{
|
2016-02-18 15:34:11 +01:00
|
|
|
/* Yes.. Remove it from signal action queue */
|
2013-01-25 00:18:32 +01:00
|
|
|
|
2016-02-18 15:34:11 +01:00
|
|
|
sq_rem((FAR sq_entry_t *)sigact, &group->tg_sigactionq);
|
2013-01-23 23:23:46 +01:00
|
|
|
|
2013-01-25 00:18:32 +01:00
|
|
|
/* And deallocate it */
|
2013-01-23 23:23:46 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
nxsig_release_action(sigact);
|
2013-01-25 00:18:32 +01:00
|
|
|
}
|
2013-01-23 23:23:46 +01:00
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* A sigaction has been supplied */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
else
|
|
|
|
{
|
2013-01-25 00:18:32 +01:00
|
|
|
/* Do we still have a sigaction container from the previous setting?
|
|
|
|
* If so, then re-use for the new signal action.
|
|
|
|
*/
|
2013-01-23 23:23:46 +01:00
|
|
|
|
|
|
|
if (!sigact)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2013-01-25 00:18:32 +01:00
|
|
|
/* No.. Then we need to allocate one for the new action. */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
sigact = nxsig_alloc_action();
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
/* An error has occurred if we could not allocate the sigaction */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
if (!sigact)
|
2015-10-08 03:59:14 +02:00
|
|
|
{
|
2013-01-23 23:23:46 +01:00
|
|
|
set_errno(ENOMEM);
|
|
|
|
return ERROR;
|
2015-10-08 03:59:14 +02:00
|
|
|
}
|
2013-01-23 23:23:46 +01:00
|
|
|
|
|
|
|
/* Put the signal number in the queue entry */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-23 23:23:46 +01:00
|
|
|
sigact->signo = (uint8_t)signo;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-02-18 15:34:11 +01:00
|
|
|
/* Add the new sigaction to signal action queue */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-02-18 15:34:11 +01:00
|
|
|
sq_addlast((FAR sq_entry_t *)sigact, &group->tg_sigactionq);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2013-01-23 23:23:46 +01:00
|
|
|
|
|
|
|
/* Set the new sigaction */
|
|
|
|
|
|
|
|
COPY_SIGACTION(&sigact->act, act);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
2013-01-25 00:18:32 +01:00
|
|
|
return OK;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
* Name: nxsig_release_action
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Deallocate a sigaction Q entry
|
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
void nxsig_release_action(FAR sigactq_t *sigact)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
|
|
|
/* Just put it back on the free list */
|
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
sq_addlast((FAR sq_entry_t *)sigact, &g_sigfreeaction);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|