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
03deb2c9
Commit
03deb2c9
authored
Oct 29, 2012
by
Martin Hurton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve LIBZMQ-447
parent
19f77a1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
socket_base.cpp
src/socket_base.cpp
+5
-5
No files found.
src/socket_base.cpp
View file @
03deb2c9
...
...
@@ -678,11 +678,6 @@ int zmq::socket_base_t::recv (msg_t *msg_, int flags_)
return
-
1
;
}
// Get the message.
int
rc
=
xrecv
(
msg_
,
flags_
);
if
(
unlikely
(
rc
!=
0
&&
errno
!=
EAGAIN
))
return
-
1
;
// Once every inbound_poll_rate messages check for signals and process
// incoming commands. This happens only if we are not polling altogether
// because there are messages available all the time. If poll occurs,
...
...
@@ -697,6 +692,11 @@ int zmq::socket_base_t::recv (msg_t *msg_, int flags_)
ticks
=
0
;
}
// Get the message.
int
rc
=
xrecv
(
msg_
,
flags_
);
if
(
unlikely
(
rc
!=
0
&&
errno
!=
EAGAIN
))
return
-
1
;
// If we have the message, return immediately.
if
(
rc
==
0
)
{
extract_flags
(
msg_
);
...
...
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