summaryrefslogtreecommitdiff
path: root/nuttx/include/poll.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-19 02:40:09 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-19 02:40:09 +0000
commitc0da6c0faf395fa16a20eddef79934ac406759d7 (patch)
tree925c503269b1e42612a6c4cb5372a6e6ea5f10d5 /nuttx/include/poll.h
parent9cf192e2eca3b7d266e25a49a02008fe015ff389 (diff)
downloadpx4-nuttx-c0da6c0faf395fa16a20eddef79934ac406759d7.tar.gz
px4-nuttx-c0da6c0faf395fa16a20eddef79934ac406759d7.tar.bz2
px4-nuttx-c0da6c0faf395fa16a20eddef79934ac406759d7.zip
Move poll storage slot from pollfd struct to socket struct
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1286 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/poll.h')
-rw-r--r--nuttx/include/poll.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/nuttx/include/poll.h b/nuttx/include/poll.h
index 74acfe2cd..e82d48f57 100644
--- a/nuttx/include/poll.h
+++ b/nuttx/include/poll.h
@@ -108,12 +108,6 @@ struct pollfd
sem_t *sem; /* Pointer to semaphore used to post output event */
pollevent_t events; /* The input event flags */
pollevent_t revents; /* The output event flags */
-
- /* The socket poll logic needs a place to retain state info */
-
-#if CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET_TCP) && CONFIG_NET_NTCP_READAHEAD_BUFFERS > 0
- FAR void *private;
-#endif
};
/****************************************************************************