summaryrefslogtreecommitdiff
path: root/ace/os_include/sys/select.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/os_include/sys/select.h')
-rw-r--r--ace/os_include/sys/select.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/ace/os_include/sys/select.h b/ace/os_include/sys/select.h
index 21073340a5c..8c6dde3660e 100644
--- a/ace/os_include/sys/select.h
+++ b/ace/os_include/sys/select.h
@@ -2,19 +2,19 @@
//=============================================================================
/**
- * @file select.h
+ * @file os_select.h
*
* select types
*
* $Id$
*
- * @author Don Hinton <dhinton@ieee.org>
+ * @author Don Hinton <dhinton@dresystems.com>
* @author This code was originally in various places including ace/OS.h.
*/
//=============================================================================
-#ifndef ACE_OS_INCLUDE_SYS_SELECT_H
-#define ACE_OS_INCLUDE_SYS_SELECT_H
+#ifndef ACE_OS_INCLUDE_SYS_OS_SELECT_H
+#define ACE_OS_INCLUDE_SYS_OS_SELECT_H
#include "ace/pre.h"
@@ -28,13 +28,19 @@
#include "ace/os_include/signal.h"
#if !defined (ACE_LACKS_SYS_SELECT_H)
-# include /**/ <sys/select.h>
+# include /**/ <sys/select.h>
#endif /* !ACE_LACKS_SYS_SELECT_H */
#if defined (ACE_WIN32)
-// This will help until we figure out everything:
-# define NFDBITS 32 /* only used in unused functions... */
+ // This will help until we figure out everything:
+# define NFDBITS 32 /* only used in unused functions... */
#endif /* ACE_WIN32 */
+#if defined (ACE_SELECT_USES_INT)
+ typedef int ACE_FD_SET_TYPE;
+#else
+ typedef fd_set ACE_FD_SET_TYPE;
+#endif /* ACE_SELECT_USES_INT */
+
#include "ace/post.h"
-#endif /* ACE_OS_INCLUDE_SYS_SELECT_H */
+#endif /* ACE_OS_INCLUDE_SYS_OS_SELECT_H */