Rob Shearman : include: Define sigset_t in pthread.h if HAVE_SIGSET_T isn' t defined.
Module: wine Branch: master Commit: dc2bee5f4259a878aef9d5e29028a40de3326997 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dc2bee5f4259a878aef9d5e290... Author: Rob Shearman <robertshearman(a)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
participants (1)
-
Alexandre Julliard