qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [5530] Fix undefined pthread_sigmask warning on OpenBSD


From: Blue Swirl
Subject: Re: [Qemu-devel] [5530] Fix undefined pthread_sigmask warning on OpenBSD
Date: Sun, 26 Oct 2008 11:52:28 +0200

On 10/25/08, Juergen Lock <address@hidden> wrote:
> Hi!
>
>
>  In article <address@hidden> you write:
>  >Revision: 5530
>  >          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5530
>  >Author:   blueswir1
>  >Date:     2008-10-25 11:19:14 +0000 (Sat, 25 Oct 2008)
>  >
>  >Log Message:
>  >-----------
>  >Fix undefined pthread_sigmask warning on OpenBSD
>  >
>  >Modified Paths:
>  >--------------
>  >    trunk/audio/sdlaudio.c
>  >
>  >Modified: trunk/audio/sdlaudio.c
>  >===================================================================
>  >--- trunk/audio/sdlaudio.c     2008-10-25 11:18:12 UTC (rev 5529)
>  >+++ trunk/audio/sdlaudio.c     2008-10-25 11:19:14 UTC (rev 5530)
>  >@@ -29,6 +29,8 @@
>  > #ifndef _WIN32
>  > #ifdef __sun__
>  > #define _POSIX_PTHREAD_SEMANTICS 1
>  >+#elif defined(__OpenBSD__)
>  >+#include <pthread.h>
>  > #endif
>  > #include <signal.h>
>  > #endif
>  >
>
>  I forgot to mention that I also patched this for FreeBSD, so the above
>
>  >+#elif defined(__OpenBSD__)
>
>   can be changed to
>
>  >+#elif defined(__OpenBSD__) || defined(__FreeBSD__)
>
>   Or do I need to send a proper patch? :)

No, I'll just copy and paste. It looks like NetBSD uses signal.h like
everyone should.

http://www.opengroup.org/onlinepubs/009695399/functions/pthread_sigmask.html

http://cvsweb.netbsd.org/bsdweb.cgi/src/include/signal.h?rev=1.50&content-type=text/x-cvsweb-markup&only_with_tag=MAIN




reply via email to

[Prev in Thread] Current Thread [Next in Thread]