source: rtems/c/src/exec/posix/include/rtems/posix/psignal.h @ 9f0dfea

4.104.114.84.95
Last change on this file since 9f0dfea was 9f0dfea, checked in by Joel Sherrill <joel.sherrill@…>, on 04/27/98 at 13:46:18

Changed POSIX_SIGNALS_h to RTEMS_POSIX_SIGNALS_h to avoid conflict with
the system signals.h file.

Moved POSIX_signals_Siginfo_node type definition to this file to allow
confdefs.h to know the size per queued signal.

  • Property mode set to 100644
File size: 351 bytes
RevLine 
[494740c]1/*
2 *  $Id$
3 */
4
[9f0dfea]5#ifndef __RTEMS_POSIX_SIGNALS_h
6#define __RTEMS_POSIX_SIGNALS_h
7
8typedef struct {
9  Chain_Node  Node;
10  siginfo_t   Info;
11}  POSIX_signals_Siginfo_node;
[494740c]12
[25a882a6]13void _POSIX_signals_Manager_Initialization(
14  int  maximum_queued_signals
15);
[7fc3029]16
[494740c]17void _POSIX_signals_Post_switch_extension(
18  Thread_Control  *the_thread
19);
20
21#endif
22/* end of file */
Note: See TracBrowser for help on using the repository browser.