mirror of
https://github.com/apache/nuttx.git
synced 2025-12-19 19:08:23 +08:00
Squashed commit of the following:
arch/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
sched/ audio/ crypto/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
Documentation/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
fs/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
graphics/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
net/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
drivers/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
include/, syscall/, wireless/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
configs/: Remove all references to CONFIG_DISABLE_POLL. Standard POSIX poll can no longer be disabled.
This commit is contained in:
@@ -63,7 +63,7 @@
|
||||
|
||||
/* Conditions for support TCP poll/select operations */
|
||||
|
||||
#if !defined(CONFIG_DISABLE_POLL) && defined(CONFIG_NET_TCP_READAHEAD)
|
||||
#ifdef CONFIG_NET_TCP_READAHEAD
|
||||
# define HAVE_TCP_POLL
|
||||
#endif
|
||||
|
||||
@@ -1161,7 +1161,7 @@ int tcp_backlogadd(FAR struct tcp_conn_s *conn,
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#if defined(CONFIG_NET_TCPBACKLOG) && !defined(CONFIG_DISABLE_POLL)
|
||||
#ifdef CONFIG_NET_TCPBACKLOG
|
||||
bool tcp_backlogavailable(FAR struct tcp_conn_s *conn);
|
||||
#else
|
||||
# define tcp_backlogavailable(c) (false);
|
||||
|
||||
Reference in New Issue
Block a user