Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
111f0ff0
Commit
111f0ff0
authored
Jan 20, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZMQII-41: Poll function in C++ binding doesn't convert errors to exceptions
parent
6b0457fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
zmq.hpp
bindings/cpp/zmq.hpp
+4
-1
No files found.
bindings/cpp/zmq.hpp
View file @
111f0ff0
...
...
@@ -35,7 +35,10 @@ namespace zmq
inline
int
poll
(
zmq_pollitem_t
*
items_
,
int
nitems_
,
long
timeout_
=
-
1
)
{
return
zmq_poll
(
items_
,
nitems_
,
timeout_
);
int
rc
=
zmq_poll
(
items_
,
nitems_
,
timeout_
);
if
(
rc
<
0
)
throw
error_t
();
return
rc
;
}
class
error_t
:
public
std
::
exception
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment