OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [psignalclearprocesssignals.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  psignalclearprocesssignals.c,v 1.3 2001/01/24 14:17:28 joel Exp
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
 
31
void _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
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.