|
RTEMS CPU Kit with SuperCore
4.10.99.0
|
00001 00009 /* 00010 * COPYRIGHT (c) 1989-2011. 00011 * On-Line Applications Research Corporation (OAR). 00012 * 00013 * The license and distribution terms for this file may be 00014 * found in the file LICENSE in this distribution or at 00015 * http://www.rtems.com/license/LICENSE. 00016 */ 00017 00018 #ifndef _RTEMS_POSIX_PSIGNAL_H 00019 #define _RTEMS_POSIX_PSIGNAL_H 00020 00021 #include <sys/signal.h> 00022 00023 #include <rtems/score/chain.h> 00024 00025 /* 00026 * POSIX internal siginfo structure 00027 */ 00028 00029 typedef struct { 00030 Chain_Node Node; 00031 siginfo_t Info; 00032 } POSIX_signals_Siginfo_node; 00033 00034 #endif 00035 /* end of file */
1.7.5