aboutsummaryrefslogtreecommitdiff
path: root/wait.h
blob: d117938babc8a8b2ddf64367b9c5319a2f3c5041 (plain) (blame)
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
/* NAME:
 *	wait.h - compensate for what vendors leave out
 *
 * AUTHOR:
 *	Simon J. Gerraty <sjg@crufty.net>
 */
/*
 * RCSid:
 *	$Id: wait.h,v 1.7 2025/08/09 22:11:45 sjg Exp $
 *
 *      @(#)Copyright (c) 1994-2025, Simon J. Gerraty.
 *      
 *      SPDX-License-Identifier: BSD-2-Clause
 *      
 *      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