Rob Shearman : include: Define sigset_t in pthread.h if HAVE_SIGSET_T isn' t defined.

Alexandre Julliard julliard at winehq.org
Tue Sep 9 05:50:24 CDT 2008


Module: wine
Branch: master
Commit: dc2bee5f4259a878aef9d5e29028a40de3326997
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dc2bee5f4259a878aef9d5e29028a40de3326997

Author: Rob Shearman <robertshearman at gmail.com>
Date:   Mon Sep  8 23:19:41 2008 +0100

include: Define sigset_t in pthread.h if HAVE_SIGSET_T isn't defined.

---

 include/wine/pthread.h |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/include/wine/pthread.h b/include/wine/pthread.h
index 1971ebb..a8d5ba3 100644
--- a/include/wine/pthread.h
+++ b/include/wine/pthread.h
@@ -25,6 +25,11 @@ struct wine_pthread_callbacks;
 
 #include <signal.h>
 
+#ifndef HAVE_SIGSET_T
+struct sigset_t;
+typedef struct sigset_t sigset_t;
+#endif
+
 #ifdef HAVE_PTHREAD_H
 
 #define _GNU_SOURCE




More information about the wine-cvs mailing list