aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mingw.h4
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);
113int sigaction(int sig, struct sigaction *in, struct sigaction *out); 113int sigaction(int sig, struct sigaction *in, struct sigaction *out);
114sighandler_t mingw_signal(int sig, sighandler_t handler); 114sighandler_t mingw_signal(int sig, sighandler_t handler);
115NOIMPL(sigfillset,int *mask UNUSED_PARAM); 115NOIMPL(sigfillset,int *mask UNUSED_PARAM);
116NOIMPL(FAST_FUNC sigprocmask_allsigs, int how UNUSED_PARAM);
117NOIMPL(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
148int clearenv(void); 151int clearenv(void);
149char *mingw_getenv(const char *name); 152char *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
257int waitpid(pid_t pid, int *status, unsigned options); 261int waitpid(pid_t pid, int *status, unsigned options);
258 262
259/* 263/*