Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
socket_select.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_NET_SOCKET_SELECT_H_
8#define ZEPHYR_INCLUDE_NET_SOCKET_SELECT_H_
9
17#include <toolchain.h>
18#include <net/socket_types.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24typedef struct zsock_fd_set {
25 uint32_t bitset[(CONFIG_POSIX_MAX_FDS + 31) / 32];
27
28
45__syscall int zsock_select(int nfds, zsock_fd_set *readfds,
46 zsock_fd_set *writefds,
47 zsock_fd_set *exceptfds,
48 struct zsock_timeval *timeout);
49
51#define ZSOCK_FD_SETSIZE (sizeof(((zsock_fd_set *)0)->bitset) * 8)
52
66
79int ZSOCK_FD_ISSET(int fd, zsock_fd_set *set);
80
93void ZSOCK_FD_CLR(int fd, zsock_fd_set *set);
94
107void ZSOCK_FD_SET(int fd, zsock_fd_set *set);
108
109#ifdef CONFIG_NET_SOCKETS_POSIX_NAMES
110
111#define fd_set zsock_fd_set
112#define timeval zsock_timeval
113#define FD_SETSIZE ZSOCK_FD_SETSIZE
114
115static inline int select(int nfds, zsock_fd_set *readfds,
116 zsock_fd_set *writefds, zsock_fd_set *exceptfds,
117 struct timeval *timeout)
118{
119 return zsock_select(nfds, readfds, writefds, exceptfds, timeout);
120}
121
122static inline void FD_ZERO(zsock_fd_set *set)
123{
124 ZSOCK_FD_ZERO(set);
125}
126
127static inline int FD_ISSET(int fd, zsock_fd_set *set)
128{
129 return ZSOCK_FD_ISSET(fd, set);
130}
131
132static inline void FD_CLR(int fd, zsock_fd_set *set)
133{
134 ZSOCK_FD_CLR(fd, set);
135}
136
137static inline void FD_SET(int fd, zsock_fd_set *set)
138{
139 ZSOCK_FD_SET(fd, set);
140}
141
142#endif /* CONFIG_NET_SOCKETS_POSIX_NAMES */
143
144#ifdef __cplusplus
145}
146#endif
147
148#include <syscalls/socket_select.h>
149
154#endif /* ZEPHYR_INCLUDE_NET_SOCKET_SELECT_H_ */
ZTEST_BMEM int timeout
Definition: main.c:31
struct zsock_fd_set zsock_fd_set
int ZSOCK_FD_ISSET(int fd, zsock_fd_set *set)
Check whether socket is a member of fd_set.
int zsock_select(int nfds, zsock_fd_set *readfds, zsock_fd_set *writefds, zsock_fd_set *exceptfds, struct zsock_timeval *timeout)
Legacy function to poll multiple sockets for events.
void ZSOCK_FD_SET(int fd, zsock_fd_set *set)
Add socket to fd_set.
void ZSOCK_FD_CLR(int fd, zsock_fd_set *set)
Remove socket from fd_set.
void ZSOCK_FD_ZERO(zsock_fd_set *set)
Initialize (clear) fd_set.
#define FD_SET
Definition: select.h:15
#define FD_CLR
Definition: select.h:16
#define FD_ZERO
Definition: select.h:14
#define FD_ISSET
Definition: select.h:17
static int select(int nfds, zsock_fd_set *readfds, zsock_fd_set *writefds, zsock_fd_set *exceptfds, struct timeval *timeout)
Definition: select.h:21
__UINT32_TYPE__ uint32_t
Definition: stdint.h:60
Definition: _timeval.h:22
Definition: socket_select.h:24
uint32_t bitset[(CONFIG_POSIX_MAX_FDS+31)/32]
Definition: socket_select.h:25
Definition: socket_types.h:43
Macros to abstract toolchain specific capabilities.