source: rtems/cpukit/posix/src/sigwaitinfo.c @ be1b8a7

4.115
Last change on this file since be1b8a7 was ab87219, checked in by Alex Ivanov <alexivanov97@…>, on 12/19/12 at 14:53:08

posix: Doxygen Enhancement Task #10

http://www.google-melange.com/gci/task/view/google/gci2012/7997223

  • Property mode set to 100644
File size: 666 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.com/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  *set,
29  siginfo_t       *info
30)
31{
32  return sigtimedwait( set, info, NULL );
33}
Note: See TracBrowser for help on using the repository browser.