RTEMS  5.0.0
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 
29 typedef struct {
30  Chain_Node Node;
31  siginfo_t Info;
33 
34 extern const uint32_t _Configuration_POSIX_Maximum_queued_signals;
35 
36 #endif
37 /* end of file */
Definition: chain.h:65
Chain Handler API.
Definition: psignal.h:29