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
501f9d8d
Unverified
Commit
501f9d8d
authored
Apr 24, 2019
by
Luca Boccassi
Committed by
GitHub
Apr 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3483 from ssbl/dead-code-fix
Problem: unused Windows-specific code in sleep_ms
parents
e3a96778
e9678efe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
signaler.cpp
src/signaler.cpp
+1
-4
No files found.
src/signaler.cpp
View file @
501f9d8d
...
...
@@ -77,10 +77,7 @@ static int sleep_ms (unsigned int ms_)
{
if
(
ms_
==
0
)
return
0
;
#if defined ZMQ_HAVE_WINDOWS
Sleep
(
ms_
>
0
?
ms_
:
INFINITE
);
return
0
;
#elif defined ZMQ_HAVE_ANDROID
#if defined ZMQ_HAVE_ANDROID
usleep
(
ms_
*
1000
);
return
0
;
#elif defined ZMQ_HAVE_VXWORKS
...
...
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