summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/signal.h
blob: 3eea8a60ec2edf4dceec851dad42af08a3da793b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* $Id$

 * =============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/win32/signal.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================= */

#ifndef PACE_SIGNAL_H_WIN32
#define PACE_SIGNAL_H_WIN32

#include "pace/sys/types.h"
#include "pace/time.h"
#include <signal.h>

#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */

  typedef sig_atomic_t pace_sig_atomic_t;
  typedef sigset_t pace_sigset_t;
  typedef struct sigaction pace_s_sigaction;
  typedef siginfo_t pace_siginfo_t;
  typedef struct sigevent pace_sigevent;
  typedef union sigval pace_sigval;

#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */

#endif /* PACE_SIGNAL_H_WIN32 */