RTEMS CPU Kit with SuperCore  4.11.3
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 #endif
35 /* end of file */
This is used to manage each element (node) which is placed on a chain.
Definition: chain.h:65
Chain Handler API.
Definition: psignal.h:29