summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/psignalclearprocesssignals.c
blob: fff797dd26dc98d236a16c74a3cf01815aa8e353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
 * @file
 *
 * @ingroup POSIXAPI
 *
 * @brief POSIX_signals clear_process_signals
 */

/*
 *  COPYRIGHT (c) 1989-2007.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/posix/psignalimpl.h>
#include <rtems/score/assert.h>

void _POSIX_signals_Clear_process_signals(
  int signo
)
{
  sigset_t   mask;
  bool       clear_signal;

  _Assert( _ISR_Get_level() != 0 );

  clear_signal = true;
  mask         = signo_to_mask( signo );

  if ( _POSIX_signals_Vectors[ signo ].sa_flags == SA_SIGINFO ) {
    if ( !_Chain_Is_empty( &_POSIX_signals_Siginfo[ signo ] ) )
      clear_signal = false;
  }

  if ( clear_signal ) {
    _POSIX_signals_Pending &= ~mask;
  }
}