summaryrefslogtreecommitdiffstats
path: root/contrib/bmake/wait.h
blob: 7408d15fb070bc14eab91e5672f714f94ebf4a2c (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* NAME:
 *	wait.h - compensate for what vendors leave out
 *
 * AUTHOR:
 *	Simon J. Gerraty <sjg@crufty.net>
 */
/*
 * RCSid:
 *	$Id: wait.h,v 1.6 2002/11/26 07:53:06 sjg Exp $
 *
 *      @(#)Copyright (c) 1994, Simon J. Gerraty.
 *      
 *      This is free software.  It comes with NO WARRANTY.
 *      Permission to use, modify and distribute this source code 
 *      is granted subject to the following conditions.
 *      1/ that the above copyright notice and this notice 
 *      are preserved in all copies and that due credit be given 
 *      to the author.  
 *      2/ that any changes to this code are clearly commented 
 *      as such so that the author does not get blamed for bugs 
 *      other than his own.
 *      
 *      Please send copies of changes and bug-fixes to:
 *      sjg@crufty.net
 */

#include <sys/wait.h>

#ifdef sun386
# define UNION_WAIT
# define WEXITSTATUS(x) ((&x)->w_retcode)
# define WTERMSIG(x) ((&x)->w_termsig)
# define WSTOPSIG(x) ((&x)->w_stopsig)
# define HAVE_WAIT4
#endif

#ifndef WAIT_T
# ifdef UNION_WAIT
#   define WAIT_T union wait
#   define WAIT_STATUS(x) (x).w_status
# else
#   define WAIT_T int
#   define WAIT_STATUS(x) x
# endif
#endif

#ifndef WEXITSTATUS
# define WEXITSTATUS(_X)       (((int)(_X)>>8)&0377)
#endif
#ifndef WSTOPPED
# define WSTOPPED 0177
#endif
#ifndef WSTOPSIG
# define WSTOPSIG(x) WSTOPPED
#endif

#ifdef UNION_WAIT
#ifndef WSET_STOPCODE
#define WSET_STOPCODE(x, sig) ((&x)->w_stopsig = (sig))
#endif
#ifndef WSET_EXITCODE
#define WSET_EXITCODE(x, ret, sig) ((&x)->w_termsig = (sig), (&x)->w_retcode = (ret))
#endif 
#else
#ifndef WSET_STOPCODE
#define WSET_STOPCODE(x, sig) ((x) = ((sig) << 8) | 0177)
#endif
#ifndef WSET_EXITCODE
#define WSET_EXITCODE(x, ret, sig) ((x) = (ret << 8) | (sig))
#endif 
#endif

#ifndef HAVE_WAITPID
# ifdef HAVE_WAIT4
#   define waitpid(pid, statusp, flags)	 wait4(pid, statusp, flags, (char *)0)
# else
#   ifdef HAVE_WAIT3
#     define waitpid(pid, statusp, flags) wait3(statusp, flags, (char *)0)
#   endif
# endif
#endif
OpenPOWER on IntegriCloud