blob: f7394c80ca04b26b6bec0f8a3e3e71241cfea6ad (
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
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#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;
}
|