source: rtems/cpukit/posix/src/psignalclearprocesssignals.c @ 874297f3

4.104.114.84.95
Last change on this file since 874297f3 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 785 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#if HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include <assert.h>
10#include <errno.h>
11#include <pthread.h>
12#include <signal.h>
13
14#include <rtems/system.h>
15#include <rtems/score/isr.h>
16#include <rtems/score/thread.h>
17#include <rtems/score/tqdata.h>
18#include <rtems/score/wkspace.h>
19#include <rtems/seterr.h>
20#include <rtems/posix/threadsup.h>
21#include <rtems/posix/psignal.h>
22#include <rtems/posix/pthread.h>
23#include <rtems/posix/time.h>
24#include <stdio.h>
25
26/*PAGE
27 *
28 *  _POSIX_signals_Clear_process_signals
29 */
30
31void _POSIX_signals_Clear_process_signals(
32  sigset_t   mask
33)
34{
35  ISR_Level  level;
36
37  _ISR_Disable( level );
38    _POSIX_signals_Pending &= ~mask;
39    if ( !_POSIX_signals_Pending )
40      _Thread_Do_post_task_switch_extension--;
41  _ISR_Enable( level );
42}
Note: See TracBrowser for help on using the repository browser.