2017-10-31 09:52:49 +08:00
|
|
|
/*
|
2021-03-08 17:22:21 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2017-10-31 09:52:49 +08:00
|
|
|
*
|
2018-09-14 22:37:43 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2017-10-31 09:52:49 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2017-10-30 Bernard The first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBC_FDSET_H__
|
|
|
|
#define LIBC_FDSET_H__
|
|
|
|
|
|
|
|
#include <rtconfig.h>
|
|
|
|
|
2020-10-02 12:00:52 +08:00
|
|
|
#if defined(RT_USING_NEWLIB) || defined(_WIN32) || (defined( __GNUC__ ) && !defined(__ARMCC_VERSION))
|
2017-10-31 09:52:49 +08:00
|
|
|
#include <sys/types.h>
|
2017-12-22 14:45:36 +08:00
|
|
|
#if defined(HAVE_SYS_SELECT_H)
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
2017-10-31 09:52:49 +08:00
|
|
|
#else
|
|
|
|
|
2018-07-17 20:29:33 +08:00
|
|
|
#ifdef SAL_USING_POSIX
|
2017-10-31 09:52:49 +08:00
|
|
|
|
|
|
|
#ifdef FD_SETSIZE
|
|
|
|
#undef FD_SETSIZE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define FD_SETSIZE DFS_FD_MAX
|
|
|
|
#endif
|
|
|
|
|
2017-12-22 14:45:36 +08:00
|
|
|
# ifndef FD_SETSIZE
|
|
|
|
# define FD_SETSIZE 32
|
2017-10-31 10:24:11 +08:00
|
|
|
# endif
|
|
|
|
|
2017-12-22 14:45:36 +08:00
|
|
|
# define NBBY 8 /* number of bits in a byte */
|
2017-10-31 09:52:49 +08:00
|
|
|
|
2017-12-22 14:45:36 +08:00
|
|
|
typedef long fd_mask;
|
|
|
|
# define NFDBITS (sizeof (fd_mask) * NBBY) /* bits per mask */
|
|
|
|
# ifndef howmany
|
|
|
|
# define howmany(x,y) (((x)+((y)-1))/(y))
|
2017-10-31 09:52:49 +08:00
|
|
|
# endif
|
|
|
|
|
|
|
|
/* We use a macro for fd_set so that including Sockets.h afterwards
|
|
|
|
can work. */
|
2017-12-22 14:45:36 +08:00
|
|
|
typedef struct _types_fd_set {
|
|
|
|
fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
|
2017-10-31 09:52:49 +08:00
|
|
|
} _types_fd_set;
|
|
|
|
|
|
|
|
#define fd_set _types_fd_set
|
|
|
|
|
2017-12-22 14:45:36 +08:00
|
|
|
# define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1L << ((n) % NFDBITS)))
|
|
|
|
# define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1L << ((n) % NFDBITS)))
|
|
|
|
# define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1L << ((n) % NFDBITS)))
|
2017-10-31 09:52:49 +08:00
|
|
|
# define FD_ZERO(p) memset((void*)(p), 0, sizeof(*(p)))
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|