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
e1254e10
Commit
e1254e10
authored
Feb 01, 2016
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1751 from c-rack/remove-zmq-utils-includes
Problem: deprecated `zmq_utils.h` is still included
parents
435535ce
7da3ee13
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
3 additions
and
19 deletions
+3
-19
CMakeLists.txt
CMakeLists.txt
+1
-2
zmq.h
include/zmq.h
+2
-2
zeromq.spec.in
packaging/redhat/zeromq.spec.in
+0
-1
inproc_lat.cpp
perf/inproc_lat.cpp
+0
-1
inproc_thr.cpp
perf/inproc_thr.cpp
+0
-1
local_lat.cpp
perf/local_lat.cpp
+0
-1
local_thr.cpp
perf/local_thr.cpp
+0
-1
remote_lat.cpp
perf/remote_lat.cpp
+0
-1
remote_thr.cpp
perf/remote_thr.cpp
+0
-1
zmq_utils.cpp
src/zmq_utils.cpp
+0
-1
test_poller.cpp
tests/test_poller.cpp
+0
-1
test_proxy.cpp
tests/test_proxy.cpp
+0
-1
test_proxy_single_socket.cpp
tests/test_proxy_single_socket.cpp
+0
-1
test_proxy_terminate.cpp
tests/test_proxy_terminate.cpp
+0
-1
test_sub_forward_tipc.cpp
tests/test_sub_forward_tipc.cpp
+0
-1
test_term_endpoint_tipc.cpp
tests/test_term_endpoint_tipc.cpp
+0
-1
test_timers.cpp
tests/test_timers.cpp
+0
-1
No files found.
CMakeLists.txt
View file @
e1254e10
...
...
@@ -497,8 +497,7 @@ if(MINGW)
endif
()
include_directories
(
include
${
CMAKE_CURRENT_BINARY_DIR
}
)
set
(
public_headers include/zmq.h
include/zmq_utils.h
)
set
(
public_headers include/zmq.h
)
set
(
readme-docs AUTHORS
COPYING
...
...
include/zmq.h
View file @
e1254e10
...
...
@@ -28,8 +28,8 @@
*************************************************************************
NOTE to contributors. This file comprises the principal public contract
for ZeroMQ API users
(along with zmq_utils.h). Any change to this fi
le
supplied in a stable
release SHOULD not break existing applications.
for ZeroMQ API users
. Any change to this file supplied in a stab
le
release SHOULD not break existing applications.
In practice this means that the value of constants must not change, and
that old values may not be reused for new constants.
*************************************************************************
...
...
packaging/redhat/zeromq.spec.in
View file @
e1254e10
...
...
@@ -120,7 +120,6 @@ This package contains ZeroMQ related development libraries and header files.
%files devel
%defattr(-,root,root,-)
%{_includedir}/zmq.h
%{_includedir}/zmq_utils.h
%{_libdir}/libzmq.la
%{_libdir}/libzmq.a
...
...
perf/inproc_lat.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
...
...
perf/inproc_thr.cpp
View file @
e1254e10
...
...
@@ -30,7 +30,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
...
...
perf/local_lat.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
...
...
perf/local_thr.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
...
...
perf/remote_lat.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
perf/remote_thr.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
src/zmq_utils.cpp
View file @
e1254e10
...
...
@@ -36,7 +36,6 @@
#include "atomic_counter.hpp"
#include "atomic_ptr.hpp"
#include <assert.h>
#include "../include/zmq_utils.h"
#if !defined ZMQ_HAVE_WINDOWS
#include <unistd.h>
...
...
tests/test_poller.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
int
main
(
void
)
{
...
...
tests/test_proxy.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
// Asynchronous client-to-server (DEALER to ROUTER) - pure libzmq
//
...
...
tests/test_proxy_single_socket.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
...
...
tests/test_proxy_terminate.cpp
View file @
e1254e10
...
...
@@ -28,7 +28,6 @@
*/
#include "testutil.hpp"
#include "../include/zmq_utils.h"
// This is a test for issue #1382. The server thread creates a SUB-PUSH
// steerable proxy. The main process then sends messages to the SUB
...
...
tests/test_sub_forward_tipc.cpp
View file @
e1254e10
...
...
@@ -30,7 +30,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <stdio.h>
#undef NDEBUG
...
...
tests/test_term_endpoint_tipc.cpp
View file @
e1254e10
...
...
@@ -30,7 +30,6 @@
*/
#include "../include/zmq.h"
#include "../include/zmq_utils.h"
#include <string.h>
#include <unistd.h>
...
...
tests/test_timers.cpp
View file @
e1254e10
...
...
@@ -29,7 +29,6 @@
#include "macros.hpp"
#include "testutil.hpp"
#include "../include/zmq_utils.h"
#if defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
...
...
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