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
9f16513e
Commit
9f16513e
authored
Dec 10, 2019
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: loop sending signaler event is obscure
Solution: add comments and remove continue/break
parent
3ace2379
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
signaler.cpp
src/signaler.cpp
+8
-9
No files found.
src/signaler.cpp
View file @
9f16513e
...
...
@@ -183,16 +183,15 @@ void zmq::signaler_t::send ()
ssize_t
sz
=
write
(
_w
,
&
inc
,
sizeof
(
inc
));
errno_assert
(
sz
==
sizeof
(
inc
));
#elif defined ZMQ_HAVE_WINDOWS
unsigned
char
dummy
=
0
;
while
(
true
)
{
int
nbytes
=
::
send
(
_w
,
reinterpret_cast
<
char
*>
(
&
dummy
)
,
sizeof
(
dummy
),
0
);
const
char
dummy
=
0
;
int
nbytes
;
do
{
nbytes
=
::
send
(
_w
,
&
dummy
,
sizeof
(
dummy
),
0
);
wsa_assert
(
nbytes
!=
SOCKET_ERROR
);
if
(
unlikely
(
nbytes
==
SOCKET_ERROR
))
continue
;
zmq_assert
(
nbytes
==
sizeof
(
dummy
));
break
;
}
// wsa_assert does not abort on WSAEWOULDBLOCK. If we get this, we retry.
}
while
(
nbytes
==
SOCKET_ERROR
);
// Given the small size of dummy (should be 1) expect that send was able to send everything.
zmq_assert
(
nbytes
==
sizeof
(
dummy
));
#elif defined ZMQ_HAVE_VXWORKS
unsigned
char
dummy
=
0
;
while
(
true
)
{
...
...
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