summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/sys/time.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/time.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/time.h')
-rw-r--r--newlib/libc/include/sys/time.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/include/sys/time.h b/newlib/libc/include/sys/time.h
index 7e7205bd8..521be68db 100644
--- a/newlib/libc/include/sys/time.h
+++ b/newlib/libc/include/sys/time.h
@@ -43,11 +43,9 @@
#include <sys/types.h>
#include <sys/timespec.h>
-/* Cygwin exposes sys/select.h to users of sys/time.h for a couple of years
- so we have to maintain that. Note that this is in accordance with POSIX. */
-#ifdef __CYGWIN__
+#if __BSD_VISIBLE
#include <sys/select.h>
-#endif /* __CYGWIN__ */
+#endif
struct timezone {
int tz_minuteswest; /* minutes west of Greenwich */