diff options
-rw-r--r-- | include/mingw.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 7ec21b72d..8ec0a1681 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -113,6 +113,8 @@ int setitimer(int type, struct itimerval *in, struct itimerval *out); | |||
113 | int sigaction(int sig, struct sigaction *in, struct sigaction *out); | 113 | int sigaction(int sig, struct sigaction *in, struct sigaction *out); |
114 | sighandler_t mingw_signal(int sig, sighandler_t handler); | 114 | sighandler_t mingw_signal(int sig, sighandler_t handler); |
115 | NOIMPL(sigfillset,int *mask UNUSED_PARAM); | 115 | NOIMPL(sigfillset,int *mask UNUSED_PARAM); |
116 | NOIMPL(FAST_FUNC sigprocmask_allsigs, int how UNUSED_PARAM); | ||
117 | NOIMPL(FAST_FUNC sigaction_set,int signo UNUSED_PARAM, const struct sigaction *sa UNUSED_PARAM); | ||
116 | 118 | ||
117 | #define signal mingw_signal | 119 | #define signal mingw_signal |
118 | /* | 120 | /* |
@@ -144,6 +146,7 @@ int winansi_fprintf(FILE *stream, const char *format, ...) __attribute__((format | |||
144 | #define WEXITSTATUS(x) ((x) & 0xff) | 146 | #define WEXITSTATUS(x) ((x) & 0xff) |
145 | #define WIFSIGNALED(x) ((unsigned)(x) > 259) | 147 | #define WIFSIGNALED(x) ((unsigned)(x) > 259) |
146 | #define WTERMSIG(x) ((x) & 0x7f) | 148 | #define WTERMSIG(x) ((x) & 0x7f) |
149 | #define WCOREDUMP(x) 0 | ||
147 | 150 | ||
148 | int clearenv(void); | 151 | int clearenv(void); |
149 | char *mingw_getenv(const char *name); | 152 | char *mingw_getenv(const char *name); |
@@ -254,6 +257,7 @@ int setitimer(int type, struct itimerval *in, struct itimerval *out); | |||
254 | * sys/wait.h | 257 | * sys/wait.h |
255 | */ | 258 | */ |
256 | #define WNOHANG 1 | 259 | #define WNOHANG 1 |
260 | #define WUNTRACED 2 | ||
257 | int waitpid(pid_t pid, int *status, unsigned options); | 261 | int waitpid(pid_t pid, int *status, unsigned options); |
258 | 262 | ||
259 | /* | 263 | /* |