source: rtems/cpukit/posix/src/sigwaitinfo.c @ 1d572eba

5
Last change on this file since 1d572eba was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 688 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Suspends Execution of Calling Thread until Signals in set Deleivered
5 */
6
7/*
8 *  3.3.8 Synchronously Accept a Signal, P1003.1b-1993, p. 76
9 *
10 *  NOTE: P1003.1c/D10, p. 39 adds sigwait().
11 *
12 *  COPYRIGHT (c) 1989-1999.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 */
19
20#if HAVE_CONFIG_H
21#include "config.h"
22#endif
23
24#include <stddef.h>
25#include <signal.h>
26
27int sigwaitinfo(
28  const sigset_t  *__restrict set,
29  siginfo_t       *__restrict info
30)
31{
32  return sigtimedwait( set, info, NULL );
33}
Note: See TracBrowser for help on using the repository browser.