blob: 179e97b45638b476a135eb27bc66f6aa97f8d6c2 (
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
|
// SPDX-FileCopyrightText: 2014-2024 Rafael G. Martins <rafael@rafaelmartins.eng.br>
// SPDX-License-Identifier: BSD-3-Clause
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif /* HAVE_SYS_WAIT_H */
#include <signal.h>
#include "compat.h"
int
bc_compat_status_code(int waitstatus)
{
int rv = waitstatus;
#if defined(WIFEXITED) && defined(WEXITSTATUS) && defined(WIFSIGNALED) && defined(WTERMSIG)
if (WIFEXITED(waitstatus)) {
rv = WEXITSTATUS(waitstatus);
}
else if (WIFSIGNALED(waitstatus)) {
rv = WTERMSIG(waitstatus);
rv += 128;
}
#elif defined(WIN32) || defined(_WIN32)
if (waitstatus == 3) {
rv = SIGTERM + 128; // can't get signal on windows.
}
#endif
return rv;
}
|