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

Subversion Repositories or1k

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

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  3.3.7 Wait for a Signal, P1003.1b-1993, p. 75
3
 *
4
 *  COPYRIGHT (c) 1989-1999.
5
 *  On-Line Applications Research Corporation (OAR).
6
 *
7
 *  The license and distribution terms for this file may be
8
 *  found in the file LICENSE in this distribution or at
9
 *  http://www.OARcorp.com/rtems/license.html.
10
 *
11
 *  sigsuspend.c,v 1.3 2001/01/24 14:17:28 joel Exp
12
 */
13
 
14
#if HAVE_CONFIG_H
15
#include "config.h"
16
#endif
17
 
18
#include <signal.h>
19
#include <errno.h>
20
 
21
#include <rtems/system.h>
22
#include <rtems/posix/pthread.h>
23
#include <rtems/posix/psignal.h>
24
 
25
int sigsuspend(
26
  const sigset_t  *sigmask
27
)
28
{
29
  sigset_t            saved_signals_blocked;
30
  sigset_t            all_signals;
31
  int                 status;
32
  POSIX_API_Control  *api;
33
 
34
  api = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ];
35
 
36
  status = sigprocmask( SIG_BLOCK, sigmask, &saved_signals_blocked );
37
 
38
  (void) sigfillset( &all_signals );
39
 
40
  status = sigtimedwait( &all_signals, NULL, NULL );
41
 
42
  (void) sigprocmask( SIG_SETMASK, &saved_signals_blocked, NULL );
43
 
44
  return status;
45
}

powered by: WebSVN 2.1.0

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