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
90f9f5ff
Commit
90f9f5ff
authored
Jan 20, 2016
by
Constantin Rack
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1718 from gcsideal/master
Last bits of Hurd support
parents
c42bf873
be387d5e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
21 deletions
+6
-21
Makefile.am
Makefile.am
+5
-0
configure.ac
configure.ac
+0
-16
poller.hpp
src/poller.hpp
+0
-4
thread.cpp
src/thread.cpp
+1
-1
No files found.
Makefile.am
View file @
90f9f5ff
...
...
@@ -702,6 +702,11 @@ if !ON_LINUX
XFAIL_TESTS
+=
tests/test_abstract_ipc
endif
if
ON_GNU
XFAIL_TESTS
+=
test_ipc_wildcard
\
test_term_endpoint
endif
EXTRA_DIST
=
\
CMakeLists.txt
\
autogen.sh
\
...
...
configure.ac
View file @
90f9f5ff
...
...
@@ -146,20 +146,6 @@ CPPFLAGS="-D_REENTRANT -D_THREAD_SAFE $CPPFLAGS"
# For host type checks
AC_CANONICAL_HOST
#For a working getsockopt() optname=SO_ERROR
dnl AC_MSG_CHECKING([for getsockopt optname SO_ERROR)])
dnl AC_TRY_COMPILE([
dnl #include <sys/types.h>
dnl #include <sys/socket.h>
dnl ], [socklen_t t;], ac_cv_type_socklen_t=yes, ac_cv_type_socklen_t=no)
dnl if test "x$ac_cv_type_socklen_t" = "xyes"; then
dnl AC_MSG_RESULT([yes])
dnl AC_DEFINE(HAVE_SOCKLEN_T,1,
dnl [Define if socklen_t is available])
dnl else
dnl AC_MSG_RESULT([no])
dnl fi
# OS-specific tests
case "${host_os}" in
*linux*)
...
...
@@ -304,8 +290,6 @@ case "${host_os}" in
AC_DEFINE(ZMQ_HAVE_GNU, 1, [Have GNU/Hurd OS])
libzmq_on_gnu="yes"
AC_CHECK_LIB(rt, sem_init)
dnl AC_CHECK_LIB(uuid, uuid_generate, ,
dnl [AC_MSG_ERROR([cannot link with -luuid, install uuid-dev.])])
;;
*)
AC_MSG_ERROR([unsupported system: ${host_os}.])
...
...
src/poller.hpp
View file @
90f9f5ff
...
...
@@ -49,12 +49,8 @@
#elif defined ZMQ_USE_SELECT
#include "select.hpp"
#elif defined ZMQ_HAVE_GNU
#define ZMQ_USE_SELECT
#include "select.hpp"
#if 0
#define ZMQ_USE_POLL
#include "poll.hpp"
#endif
#else
#error None of the ZMQ_USE_* macros defined
#endif
...
...
src/thread.cpp
View file @
90f9f5ff
...
...
@@ -114,7 +114,7 @@ void zmq::thread_t::stop ()
void
zmq
::
thread_t
::
setSchedulingParameters
(
int
priority_
,
int
schedulingPolicy_
)
{
#if !defined ZMQ_HAVE_ZOS && !defined ZMQ_HAVE_HPUX
#if !defined ZMQ_HAVE_ZOS && !defined ZMQ_HAVE_HPUX
&& !defined ZMQ_HAVE_GNU
int
policy
=
0
;
struct
sched_param
param
;
...
...
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