summaryrefslogtreecommitdiff
path: root/src/select.cpp
diff options
context:
space:
mode:
authorMartin Lucina <mato@kotelna.sk>2010-09-04 16:24:21 +0200
committerMartin Lucina <mato@kotelna.sk>2010-09-04 16:24:21 +0200
commitca176121deb8dbdc62d8a37fec377c07fc786480 (patch)
tree6b53af092e5de652a6ba92ba771333901930fa62 /src/select.cpp
parent2673a84e07b93b8607958516c55341c2eb220a6e (diff)
parent51a84c15ded2d70985c9d971ebdf3f3c9c18d590 (diff)
Merge branch 'maint'
* maint: zmq::select_t, zmq_poll(): assert if FD_SETSIZE reached zmq.h: Fix typo and use of C99 comment Conflicts: src/zmq.cpp
Diffstat (limited to 'src/select.cpp')
-rw-r--r--src/select.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/select.cpp b/src/select.cpp
index 7345cbb..59eb83e 100644
--- a/src/select.cpp
+++ b/src/select.cpp
@@ -65,6 +65,10 @@ zmq::select_t::handle_t zmq::select_t::add_fd (fd_t fd_, i_poll_events *events_)
fd_entry_t entry = {fd_, events_};
fds.push_back (entry);
+ // Ensure we do not attempt to select () on more than FD_SETSIZE
+ // file descriptors.
+ zmq_assert (fds.size () <= FD_SETSIZE);
+
// Start polling on errors.
FD_SET (fd_, &source_set_err);