RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
psignal.h
Go to the documentation of this file.
1
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;
33
34extern const uint32_t _POSIX_signals_Maximum_queued_signals;
35
36extern POSIX_signals_Siginfo_node _POSIX_signals_Siginfo_nodes[];
37
38#endif
39/* end of file */
Chain Handler API.
Definition: chain.h:68
Definition: psignal.h:29