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
ac90b7e0
Commit
ac90b7e0
authored
Jun 11, 2010
by
Brian Buchanan
Committed by
Martin Sustrik
Jun 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue 35 - ZMQ_RCVMORE sometimes erroneously returns false
parent
5ee355d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
AUTHORS
AUTHORS
+1
-0
socket_base.cpp
src/socket_base.cpp
+8
-1
No files found.
AUTHORS
View file @
ac90b7e0
...
@@ -5,6 +5,7 @@ Alexej Lotz <alexej.lotz@arcor.de>
...
@@ -5,6 +5,7 @@ Alexej Lotz <alexej.lotz@arcor.de>
Asko Kauppi <askok@dnainternet.net>
Asko Kauppi <askok@dnainternet.net>
Barak Amar <barak.amar@gmail.com>
Barak Amar <barak.amar@gmail.com>
Bernd Prager <bernd@prager.ws>
Bernd Prager <bernd@prager.ws>
Brian Buchanan <bwb@holo.org>
Chris Wong <chris@chriswongstudio.com>
Chris Wong <chris@chriswongstudio.com>
Conrad D. Steenberg <conrad.steenberg@caltech.edu>
Conrad D. Steenberg <conrad.steenberg@caltech.edu>
Dhruva Krishnamurthy <dhruva@ymail.com>
Dhruva Krishnamurthy <dhruva@ymail.com>
...
...
src/socket_base.cpp
View file @
ac90b7e0
...
@@ -424,7 +424,14 @@ int zmq::socket_base_t::recv (::zmq_msg_t *msg_, int flags_)
...
@@ -424,7 +424,14 @@ int zmq::socket_base_t::recv (::zmq_msg_t *msg_, int flags_)
return
-
1
;
return
-
1
;
}
}
ticks
=
0
;
ticks
=
0
;
return
xrecv
(
msg_
,
flags_
);
rc
=
xrecv
(
msg_
,
flags_
);
if
(
rc
==
0
)
{
rcvmore
=
msg_
->
flags
&
ZMQ_MSG_MORE
;
if
(
rcvmore
)
msg_
->
flags
&=
~
ZMQ_MSG_MORE
;
}
return
rc
;
}
}
// In blocking scenario, commands are processed over and over again until
// In blocking scenario, commands are processed over and over again until
...
...
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