summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/sys/signal.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-14 10:06:18 +0100
committerCorinna Vinschen <corinna@vinschen.de>2015-12-14 15:39:44 +0100
commit01885f533de81ff73e9da1519a4b5f2316b49f86 (patch)
tree940b95075ddd4b7411b7ca877883f37ae97080da /newlib/libc/include/sys/signal.h
parentc39ad27d9e76636527c37d030d7f7d651744a8f3 (diff)
downloadcygnal-01885f533de81ff73e9da1519a4b5f2316b49f86.tar.gz
cygnal-01885f533de81ff73e9da1519a4b5f2316b49f86.tar.bz2
cygnal-01885f533de81ff73e9da1519a4b5f2316b49f86.zip
FreeBSD compatibility for <sys/select.h>
* libc/include/sys/_sigset.h: New. * libc/include/sys/select.h: Do not include <sys/types.h> and <sys/time.h> to avoid cyclic header file dependencies. Include specialized header files instead. (sigset_t): Conditionally define. * libc/include/sys/signal.h (sigset_t): Likewise. * libc/include/sys/time.h: Include <sys/select.h> if __BSD_VISIBLE. * libc/include/sys/types.h: Likewise.
Diffstat (limited to 'newlib/libc/include/sys/signal.h')
-rw-r--r--newlib/libc/include/sys/signal.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h
index 09f0778e1..3ff0eb73c 100644
--- a/newlib/libc/include/sys/signal.h
+++ b/newlib/libc/include/sys/signal.h
@@ -10,13 +10,14 @@ extern "C" {
#include <sys/cdefs.h>
#include <sys/features.h>
#include <sys/types.h>
+#include <sys/_sigset.h>
#include <sys/_timespec.h>
/* #ifndef __STRICT_ANSI__*/
-/* Cygwin defines it's own sigset_t in include/cygwin/signal.h */
-#ifndef __CYGWIN__
-typedef unsigned long sigset_t;
+#if !defined(_SIGSET_T_DECLARED)
+#define _SIGSET_T_DECLARED
+typedef __sigset_t sigset_t;
#endif
#if defined(__rtems__)