summaryrefslogtreecommitdiff
path: root/ace/os_include/sys/select.h
blob: 4aabe050967916fed3b90246e90e77c4cec07bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    selct.h
 *
 *  $Id$
 *
 *  @author Douglas C. Schmidt (schmidt@cs.wustl.edu)
 *  @author etc
 */
//=============================================================================

#ifndef ACE_OS_INCLUDE_SYS_SELECT_H
# define ACE_OS_INCLUDE_SYS_SELECT_H
# include "ace/pre.h"

# include "ace/config-all.h"

# if !defined (ACE_LACKS_PRAGMA_ONCE)
#   pragma once
# endif /* ACE_LACKS_PRAGMA_ONCE */

// Only include if platform/compiler provide the header.
# if !defined (ACE_LACKS_SYS_SELECT_H)
#   include /**/ <sys/select.h>
# endif /* !ACE_LACKS_SYS_SELECT_H */

# if defined (ACE_NEEDS_SELECT_T) // __rtems__
extern "C"
{
  int select (int n, fd_set *readfds, fd_set *writefds,
              fd_set *exceptfds, const struct timeval *timeout);
};
# endif /* ACE_NEEDS_SELECT_T */

# if !defined (NFDBITS)
#   define NFDBITS (sizeof(fd_mask) * NBBY)        /* bits per mask */
# endif /* ! NFDBITS */

#endif /* ACE_OS_INCLUDE_SYS_SELECT_H */