source: rtems/cpukit/include/rtems/posix/psignal.h @ 9318cfb0

5
Last change on this file since 9318cfb0 was e97806a, checked in by Sebastian Huber <sebastian.huber@…>, on 10/14/18 at 17:20:05

posix: Split posix_api_configuration_table

Use separate configuration variables to avoid false dependencies.

Update #2514.

  • Property mode set to 100644
File size: 746 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Internal Information about POSIX Signals
5 *
6 * This include file defines internal information about POSIX signals.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2011.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef _RTEMS_POSIX_PSIGNAL_H
19#define _RTEMS_POSIX_PSIGNAL_H
20
21#include <sys/signal.h>
22
23#include <rtems/score/chain.h>
24
25/*
26 *  POSIX internal siginfo structure
27 */
28
29typedef struct {
30  Chain_Node  Node;
31  siginfo_t   Info;
32}  POSIX_signals_Siginfo_node;
33
34extern const uint32_t _Configuration_POSIX_Maximum_queued_signals;
35
36#endif
37/* end of file */
Note: See TracBrowser for help on using the repository browser.