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
6de24c19
Commit
6de24c19
authored
May 02, 2016
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: scatter/gather are not yet stable APIs
Solution: mark them as DRAFT APIs
parent
caaf66c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
Makefile.am
Makefile.am
+5
-5
zmq.h
include/zmq.h
+2
-2
precompiled.hpp
src/precompiled.hpp
+2
-0
CMakeLists.txt
tests/CMakeLists.txt
+1
-1
No files found.
Makefile.am
View file @
6de24c19
...
...
@@ -394,7 +394,6 @@ test_apps = \
tests/test_sockopt_hwm
\
tests/test_heartbeats
\
tests/test_stream_exceeds_buffer
\
tests/test_scatter_gather
\
tests/test_pub_invert_matching
tests_test_system_SOURCES
=
tests/test_system.cpp
...
...
@@ -594,9 +593,6 @@ tests_test_heartbeats_LDADD = src/libzmq.la
tests_test_stream_exceeds_buffer_SOURCES
=
tests/test_stream_exceeds_buffer.cpp
tests_test_stream_exceeds_buffer_LDADD
=
src/libzmq.la
tests_test_scatter_gather_SOURCES
=
tests/test_scatter_gather.cpp
tests_test_scatter_gather_LDADD
=
src/libzmq.la
tests_test_pub_invert_matching_SOURCES
=
tests/test_pub_invert_matching.cpp
tests_test_pub_invert_matching_LDADD
=
src/libzmq.la
...
...
@@ -722,7 +718,8 @@ test_apps += tests/test_poller \
tests/test_thread_safe
\
tests/test_timers
\
tests/test_radio_dish
\
tests/test_udp
tests/test_udp
\
tests/test_scatter_gather
tests_test_poller_SOURCES
=
tests/test_poller.cpp
tests_test_poller_LDADD
=
src/libzmq.la
...
...
@@ -741,6 +738,9 @@ tests_test_radio_dish_LDADD = src/libzmq.la
tests_test_udp_SOURCES
=
tests/test_udp.cpp
tests_test_udp_LDADD
=
src/libzmq.la
tests_test_scatter_gather_SOURCES
=
tests/test_scatter_gather.cpp
tests_test_scatter_gather_LDADD
=
src/libzmq.la
endif
check_PROGRAMS
=
${
test_apps
}
...
...
include/zmq.h
View file @
6de24c19
...
...
@@ -260,8 +260,6 @@ ZMQ_EXPORT const char *zmq_msg_group (zmq_msg_t *msg);
#define ZMQ_XPUB 9
#define ZMQ_XSUB 10
#define ZMQ_STREAM 11
#define ZMQ_GATHER 16
#define ZMQ_SCATTER 17
/* Deprecated aliases */
#define ZMQ_XREQ ZMQ_DEALER
...
...
@@ -529,6 +527,8 @@ ZMQ_EXPORT void zmq_threadclose (void* thread);
#define ZMQ_CLIENT 13
#define ZMQ_RADIO 14
#define ZMQ_DISH 15
#define ZMQ_GATHER 16
#define ZMQ_SCATTER 17
/* DRAFT Socket events. */
ZMQ_EXPORT
int
zmq_join
(
void
*
s
,
const
char
*
group
);
...
...
src/precompiled.hpp
View file @
6de24c19
...
...
@@ -157,6 +157,8 @@
#define ZMQ_CLIENT 13
#define ZMQ_RADIO 14
#define ZMQ_DISH 15
#define ZMQ_GATHER 16
#define ZMQ_SCATTER 17
/* DRAFT Socket events. */
int
zmq_join
(
void
*
s
,
const
char
*
group
);
...
...
tests/CMakeLists.txt
View file @
6de24c19
...
...
@@ -64,7 +64,6 @@ set(tests
test_stream_timeout
test_xpub_manual
test_xpub_welcome_msg
test_scatter_gather
)
if
(
NOT WIN32
)
list
(
APPEND tests
...
...
@@ -120,6 +119,7 @@ IF (ENABLE_DRAFTS)
test_timers
test_radio_dish
test_udp
test_scatter_gather
)
ENDIF
(
ENABLE_DRAFTS
)
...
...
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