summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/wait.h
blob: 4bc233da5b5a65e948fd01a2b9b27598e3dc2307 (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/posix/wait.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */

#ifndef PACE_WAIT_H_POSIX
#define PACE_WAIT_H_POSIX

#include "pace/sys/types.h"

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

#define PACE_WEXITSTATUS WEXITSTATUS
#define PACE_WIFEXITED WIFEXITED
#define PACE_WIFSIGNALED WISIGNALED
#define PACE_WIFSTOPPED WIFSTOPPED
#define PACE_WNOHANG WNOHANG
#define PACE_WSTOPSIG WSTOPSIG
#define PACE_WTERMSIG WTERMSIG
#define PACE_WUNTRACED WUNTRACED

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

#endif /* PACE_WAIT_H */