summaryrefslogtreecommitdiffstats
path: root/nuttx/include/poll.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-11-19 18:43:50 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-11-19 18:43:50 +0000
commit0bd7074a2d10a78e6ec402f170813cb393612022 (patch)
tree6a6105e2401ec7e9eb4e590c49c3121b2c4b82ae /nuttx/include/poll.h
parent397a18e318cebfe6f9ec2d6a1e6ae5bb4e89d873 (diff)
Move poll save area back into struct pollfd (as it was
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1288 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include/poll.h')
-rw-r--r--nuttx/include/poll.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/nuttx/include/poll.h b/nuttx/include/poll.h
index e82d48f57c..3b41ec99ad 100644
--- a/nuttx/include/poll.h
+++ b/nuttx/include/poll.h
@@ -108,6 +108,7 @@ 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 */
+ FAR void *private; /* For use by drivers */
};
/****************************************************************************