summaryrefslogtreecommitdiff
path: root/nuttx/fs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-18 22:14:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-18 22:14:25 +0000
commit8ce7b46ab61009d05f9d2624240fcc128ab6390e (patch)
treed19c85f9452545b0546d24eedd5873aa682d99ba /nuttx/fs
parent1994f6983332bf79b4ea8d3f242dc710f99cf2e9 (diff)
downloadpx4-nuttx-8ce7b46ab61009d05f9d2624240fcc128ab6390e.tar.gz
px4-nuttx-8ce7b46ab61009d05f9d2624240fcc128ab6390e.tar.bz2
px4-nuttx-8ce7b46ab61009d05f9d2624240fcc128ab6390e.zip
Basic setup of network select
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1278 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs')
-rw-r--r--nuttx/fs/fs_poll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/fs_poll.c b/nuttx/fs/fs_poll.c
index 9cf6486c1..9eed46c05 100644
--- a/nuttx/fs/fs_poll.c
+++ b/nuttx/fs/fs_poll.c
@@ -109,7 +109,7 @@ static int poll_fdsetup(int fd, FAR struct pollfd *fds, boolean setup)
#if defined(CONFIG_NET) && CONFIG_NSOCKET_DESCRIPTORS > 0
if ((unsigned int)fd < (CONFIG_NFILE_DESCRIPTORS+CONFIG_NSOCKET_DESCRIPTORS))
{
- return net_poll(fds->fd, fds);
+ return net_poll(fds->fd, fds, setup);
}
else
#endif