HomeSort by: relevance | last modified time | path
    Searched defs:fd_set (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/ntp/dist/include/
ntp_select.h 4 * Not all machines define FD_SET in sys/types.h
10 /* Could say: !defined(FD_SET) && defined(HAVE_SYS_SELECT_H) */
11 /* except FD_SET can legitimately be a typedef... */
17 extern int select(int width, fd_set *pReadFds, fd_set *pWriteFds,
18 fd_set *pExceptFds, struct timeval *pTimeOut);
22 #if !defined(FD_SET)
25 # define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
34 } fd_set; typedef in typeref:struct:__anon7372
  /src/sys/sys/
fd_set.h 1 /* $NetBSD: fd_set.h,v 1.8 2024/05/12 10:34:56 rillig Exp $ */
66 typedef struct fd_set { struct
68 } fd_set; typedef in typeref:struct:fd_set
70 #define FD_SET(n, p) \
80 fd_set *__fds = (p); \
99 fd_set *__f = (f), *__t = (t); \
  /src/external/bsd/top/dist/
top.c 78 /* if FD_SET and friends aren't present, then fake something up */
79 #ifndef FD_SET
80 typedef int fd_set; typedef
82 #define FD_SET(f, x) (*(x) = 1<<f)
621 fd_set readfds;
647 FD_SET(STDIN_FILENO, &readfds);
  /src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
os.h 503 #ifndef FD_SET
505 typedef struct fd_set { int fds_bits[1]; } fd_set; typedef in typeref:struct:fd_set
508 # define FD_SET(b, fd) ((fd)->fds_bits[0] |= 1 << (b))
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/
os.h 503 #ifndef FD_SET
505 typedef struct fd_set { int fds_bits[1]; } fd_set; typedef in typeref:struct:fd_set
508 # define FD_SET(b, fd) ((fd)->fds_bits[0] |= 1 << (b))
  /src/external/mpl/dhcp/dist/includes/omapip/
omapip_p.h 43 #define fd_set cygwin_fd_set macro
  /src/external/mpl/dhcp/dist/includes/
dhcpd.h 45 #define fd_set cygwin_fd_set macro

Completed in 19 milliseconds