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

4.104.114.84.95
Last change on this file since 874297f3 was 874297f3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/16/04 at 10:01:03

Remove stray white spaces.

  • Property mode set to 100644
File size: 780 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_Set_process_signals
29 */
30
31void _POSIX_signals_Set_process_signals(
32  sigset_t   mask
33)
34{
35  ISR_Level  level;
36
37  _ISR_Disable( level );
38    if ( !_POSIX_signals_Pending )
39      _Thread_Do_post_task_switch_extension++;
40    _POSIX_signals_Pending |= mask;
41  _ISR_Enable( level );
42}
Note: See TracBrowser for help on using the repository browser.