Windows: add pthread_sigmask() that does nothing
[gitweb.git] / compat / win32 / pthread.h
index 8ad187344fd93e894a2f1cbfaa0fb59fd832de5b..e74157cd4d04d304b96fe88a70804b240f798b1c 100644 (file)
@@ -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 */