GSocketError GAddress_UNIX_SetPath(GAddress *address, const char *path);
GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf);
-// standard linux headers produce many warnings when used with icc
-#if defined(__INTELC__) && defined(__LINUX__)
- inline void wxFD_ZERO(fd_set *fds)
- {
- #pragma warning(push)
- #pragma warning(disable:593)
- FD_ZERO(fds);
- #pragma warning(pop)
- }
-
- inline void wxFD_SET(int fd, fd_set *fds)
- {
- #pragma warning(push, 1)
- #pragma warning(disable:1469)
- FD_SET(fd, fds);
- #pragma warning(pop)
- }
-
- inline bool wxFD_ISSET(int fd, fd_set *fds)
- {
- #pragma warning(push, 1)
- #pragma warning(disable:1469)
- return FD_ISSET(fd, fds);
- #pragma warning(pop)
- }
- inline bool wxFD_CLR(int fd, fd_set *fds)
- {
- #pragma warning(push, 1)
- #pragma warning(disable:1469)
- return FD_CLR(fd, fds);
- #pragma warning(pop)
- }
-#else // !__INTELC__
- #define wxFD_ZERO(fds) FD_ZERO(fds)
- #define wxFD_SET(fd, fds) FD_SET(fd, fds)
- #define wxFD_ISSET(fd, fds) FD_ISSET(fd, fds)
- #define wxFD_CLR(fd, fds) FD_CLR(fd, fds)
-#endif // __INTELC__/!__INTELC__
-
-// this is for Windows where configure doesn't define this
-#ifndef SOCKOPTLEN_T
- #define SOCKOPTLEN_T int
-#endif
-
-/*
- * MSW defines this, Unices don't.
- */
-#ifndef INVALID_SOCKET
-#define INVALID_SOCKET (-1)
-#endif
-
#endif /* wxUSE_SOCKETS */
#endif /* _WX_GSOCKET_H_ */
--- /dev/null
+///////////////////////////////////////////////////////////////////////////////
+// Name: wx/private/fd.h
+// Purpose: private stuff for working with file descriptors
+// Author: Vadim Zeitlin
+// Created: 2008-11-23 (moved from wx/unix/private.h)
+// RCS-ID: $Id$
+// Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
+// Licence: wxWindows licence
+///////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_PRIVATE_FD_H_
+#define _WX_PRIVATE_FD_H_
+
+// standard Linux headers produce many warnings when used with icc so define
+// our own replacements for FD_XXX macros
+#if defined(__INTELC__) && defined(__LINUX__)
+ inline void wxFD_ZERO(fd_set *fds)
+ {
+ #pragma warning(push)
+ #pragma warning(disable:593)
+ FD_ZERO(fds);
+ #pragma warning(pop)
+ }
+
+ inline void wxFD_SET(int fd, fd_set *fds)
+ {
+ #pragma warning(push, 1)
+ #pragma warning(disable:1469)
+ FD_SET(fd, fds);
+ #pragma warning(pop)
+ }
+
+ inline bool wxFD_ISSET(int fd, fd_set *fds)
+ {
+ #pragma warning(push, 1)
+ #pragma warning(disable:1469)
+ return FD_ISSET(fd, fds);
+ #pragma warning(pop)
+ }
+ inline bool wxFD_CLR(int fd, fd_set *fds)
+ {
+ #pragma warning(push, 1)
+ #pragma warning(disable:1469)
+ return FD_CLR(fd, fds);
+ #pragma warning(pop)
+ }
+#else // !__INTELC__
+ #define wxFD_ZERO(fds) FD_ZERO(fds)
+ #define wxFD_SET(fd, fds) FD_SET(fd, fds)
+ #define wxFD_ISSET(fd, fds) FD_ISSET(fd, fds)
+ #define wxFD_CLR(fd, fds) FD_CLR(fd, fds)
+#endif // __INTELC__/!__INTELC__
+
+// this is for Windows where configure doesn't define this
+#ifndef SOCKOPTLEN_T
+ #define SOCKOPTLEN_T int
+#endif
+
+/*
+ * MSW defines this, Unices don't.
+ */
+#ifndef INVALID_SOCKET
+ #define INVALID_SOCKET (-1)
+#endif
+
+#endif // _WX_PRIVATE_FD_H_
#define _WX_UNIX_PRIVATE_H_
// this file is currently empty as its original contents was moved to
-// include/wx/gsocket.h but let's keep it for now in case we need it for
+// include/wx/private/fd.h but let's keep it for now in case we need it for
// something again in the future
+#include "wx/private/fd.h"
#endif // _WX_UNIX_PRIVATE_H_
#include "wx/stopwatch.h"
#include "wx/thread.h"
#include "wx/evtloop.h"
+#include "wx/private/fd.h"
// DLL options compatibility check:
#include "wx/build.h"