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
aee5fc25
Unverified
Commit
aee5fc25
authored
Jun 04, 2018
by
Luca Boccassi
Committed by
GitHub
Jun 04, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3155 from pijyoi/wepoll_missing_files
wepoll integration fixes
parents
d07ddb1b
5a1ea0c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
Makefile.am
Makefile.am
+5
-1
epoll.cpp
src/epoll.cpp
+1
-1
No files found.
Makefile.am
View file @
aee5fc25
...
@@ -259,7 +259,8 @@ src_libzmq_la_SOURCES = \
...
@@ -259,7 +259,8 @@ src_libzmq_la_SOURCES = \
if
USE_WEPOLL
if
USE_WEPOLL
src_libzmq_la_SOURCES
+=
\
src_libzmq_la_SOURCES
+=
\
external/wepoll/wepoll.c
external/wepoll/wepoll.c
\
external/wepoll/wepoll.h
endif
endif
if
USE_TWEETNACL
if
USE_TWEETNACL
...
@@ -974,6 +975,9 @@ endif
...
@@ -974,6 +975,9 @@ endif
EXTRA_DIST
=
\
EXTRA_DIST
=
\
external/unity/license.txt
\
external/unity/license.txt
\
external/unity/version.txt
\
external/unity/version.txt
\
external/wepoll/license.txt
\
external/wepoll/version.txt
\
external/wepoll/README.md
\
CMakeLists.txt
\
CMakeLists.txt
\
autogen.sh
\
autogen.sh
\
version.sh
\
version.sh
\
...
...
src/epoll.cpp
View file @
aee5fc25
...
@@ -54,7 +54,7 @@ const zmq::epoll_t::epoll_fd_t zmq::epoll_t::epoll_retired_fd =
...
@@ -54,7 +54,7 @@ const zmq::epoll_t::epoll_fd_t zmq::epoll_t::epoll_retired_fd =
zmq
::
epoll_t
::
epoll_t
(
const
zmq
::
thread_ctx_t
&
ctx_
)
:
zmq
::
epoll_t
::
epoll_t
(
const
zmq
::
thread_ctx_t
&
ctx_
)
:
worker_poller_base_t
(
ctx_
)
worker_poller_base_t
(
ctx_
)
{
{
#ifdef ZMQ_USE_EPOLL_CLOEXEC
#ifdef ZMQ_
IOTHREAD_POLLER_
USE_EPOLL_CLOEXEC
// Setting this option result in sane behaviour when exec() functions
// Setting this option result in sane behaviour when exec() functions
// are used. Old sockets are closed and don't block TCP ports, avoid
// are used. Old sockets are closed and don't block TCP ports, avoid
// leaks, etc.
// leaks, etc.
...
...
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