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
df4548aa
Commit
df4548aa
authored
Jan 23, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git@github.com:sustrik/zeromq2
parents
26349349
d762e1a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
zmq.hpp
bindings/cpp/zmq.hpp
+8
-8
No files found.
bindings/cpp/zmq.hpp
View file @
df4548aa
...
...
@@ -33,14 +33,6 @@ namespace zmq
typedef
zmq_free_fn
free_fn
;
typedef
zmq_pollitem_t
pollitem_t
;
inline
int
poll
(
zmq_pollitem_t
*
items_
,
int
nitems_
,
long
timeout_
=
-
1
)
{
int
rc
=
zmq_poll
(
items_
,
nitems_
,
timeout_
);
if
(
rc
<
0
)
throw
error_t
();
return
rc
;
}
class
error_t
:
public
std
::
exception
{
public
:
...
...
@@ -57,6 +49,14 @@ namespace zmq
int
errnum
;
};
inline
int
poll
(
zmq_pollitem_t
*
items_
,
int
nitems_
,
long
timeout_
=
-
1
)
{
int
rc
=
zmq_poll
(
items_
,
nitems_
,
timeout_
);
if
(
rc
<
0
)
throw
error_t
();
return
rc
;
}
class
message_t
:
private
zmq_msg_t
{
friend
class
socket_t
;
...
...
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