summaryrefslogtreecommitdiff
path: root/compat/win32/pthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'compat/win32/pthread.h')
-rw-r--r--compat/win32/pthread.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/compat/win32/pthread.h b/compat/win32/pthread.h
index 8ad187344f..e74157cd4d 100644
--- a/compat/win32/pthread.h
+++ b/compat/win32/pthread.h
@@ -101,4 +101,9 @@ static inline void *pthread_getspecific(pthread_key_t key)
return TlsGetValue(key);
}
+static inline int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset)
+{
+ return 0;
+}
+
#endif /* PTHREAD_H */