X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=compat%2Fmingw.h;h=948de66eb5fb2c1e52e774e86f593e42c26bcd05;hb=14468ab45bae83ad300f17f41fe8fd555329ee5e;hp=4f7ba4c13f9d0086acf9d1cfadf6912b1d641033;hpb=da4e4a65a27ca912c3f48289acf9ff7a67476c3f;p=git.git diff --git a/compat/mingw.h b/compat/mingw.h index 4f7ba4c13..948de66eb 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -17,9 +17,10 @@ typedef int pid_t; #define S_IROTH 0 #define S_IXOTH 0 -#define WIFEXITED(x) ((unsigned)(x) < 259) /* STILL_ACTIVE */ +#define WIFEXITED(x) 1 +#define WIFSIGNALED(x) 0 #define WEXITSTATUS(x) ((x) & 0xff) -#define WIFSIGNALED(x) ((unsigned)(x) > 259) +#define WTERMSIG(x) SIGTERM #define SIGHUP 1 #define SIGQUIT 3 @@ -92,6 +93,8 @@ static inline int fcntl(int fd, int cmd, long arg) errno = EINVAL; return -1; } +/* bash cannot reliably detect negative return codes as failure */ +#define exit(code) exit((code) & 0xff) /* * simple adaptors