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:
Gregory Nutt
2019-05-21 18:57:54 -06:00
parent 3ab2b82b63
commit b49be4bb20
516 changed files with 424 additions and 1705 deletions

View File

@@ -49,8 +49,6 @@
#include <nuttx/kmalloc.h>
#ifndef CONFIG_DISABLE_POLL
/****************************************************************************
* Public Functions
****************************************************************************/
@@ -235,4 +233,3 @@ int epoll_wait(int epfd, FAR struct epoll_event *evs, int maxevents,
return i;
}
#endif /* CONFIG_DISABLE_POLL */

View File

@@ -56,8 +56,6 @@
#include "inode/inode.h"
#ifndef CONFIG_DISABLE_POLL
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
@@ -542,4 +540,3 @@ int poll(FAR struct pollfd *fds, nfds_t nfds, int timeout)
return count;
}
#endif /* CONFIG_DISABLE_POLL */

View File

@@ -54,16 +54,6 @@
#include "inode/inode.h"
#ifndef CONFIG_DISABLE_POLL
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Public Functions
****************************************************************************/
@@ -295,4 +285,3 @@ errout:
return ERROR;
}
#endif /* CONFIG_DISABLE_POLL */