Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSanimir Agovic2017-12-12 20:19:54 +0000
committerSanimir Agovic2017-12-18 11:01:45 +0000
commit2a51404ff978b309188531863f5205e92df6dda6 (patch)
tree9e633cbab7490021babacbdde11bf5adc91d40f9
parent2a54894cca193d20c3add0dd47ddfcb6b6e40f19 (diff)
downloadorg.eclipse.tcf.agent-2a51404ff978b309188531863f5205e92df6dda6.tar.gz
org.eclipse.tcf.agent-2a51404ff978b309188531863f5205e92df6dda6.tar.xz
org.eclipse.tcf.agent-2a51404ff978b309188531863f5205e92df6dda6.zip
tcf: remove unreferenced includes from headers
Change-Id: I80a67131c521554648c63ce3171402c6f0cde389 Signed-off-by: Sanimir Agovic <sanimir@subpath.org>
-rw-r--r--agent/tcf/framework/asyncreq.h1
-rw-r--r--agent/tcf/framework/json.h1
-rw-r--r--agent/tcf/framework/peer.h1
-rw-r--r--agent/tcf/services/discovery.h2
-rw-r--r--agent/tcf/services/linenumbers.h1
-rw-r--r--agent/tcf/services/linenumbers_mux.h1
-rw-r--r--agent/tcf/services/profiler_sst.h2
-rw-r--r--agent/tcf/services/vm.h2
8 files changed, 1 insertions, 10 deletions
diff --git a/agent/tcf/framework/asyncreq.h b/agent/tcf/framework/asyncreq.h
index 4a383e27..574f5688 100644
--- a/agent/tcf/framework/asyncreq.h
+++ b/agent/tcf/framework/asyncreq.h
@@ -31,7 +31,6 @@
#include <time.h>
#include <sys/stat.h>
-#include <tcf/framework/link.h>
#include <tcf/framework/events.h>
enum {
diff --git a/agent/tcf/framework/json.h b/agent/tcf/framework/json.h
index 989a373b..0c1bde3b 100644
--- a/agent/tcf/framework/json.h
+++ b/agent/tcf/framework/json.h
@@ -26,7 +26,6 @@
#define D_json
#include <tcf/config.h>
-#include <stdlib.h>
#include <tcf/framework/streams.h>
/* Marker of end of command argument */
diff --git a/agent/tcf/framework/peer.h b/agent/tcf/framework/peer.h
index d24635dc..8f316f83 100644
--- a/agent/tcf/framework/peer.h
+++ b/agent/tcf/framework/peer.h
@@ -20,7 +20,6 @@
#ifndef D_peer
#define D_peer
-#include <stdlib.h>
#include <time.h>
typedef struct PeerServer PeerServer;
diff --git a/agent/tcf/services/discovery.h b/agent/tcf/services/discovery.h
index 9db65b22..5c67731a 100644
--- a/agent/tcf/services/discovery.h
+++ b/agent/tcf/services/discovery.h
@@ -22,8 +22,6 @@
#include <tcf/config.h>
#include <tcf/framework/protocol.h>
-#include <tcf/framework/channel.h>
-#include <tcf/framework/link.h>
#define DISCOVERY_TCF_PORT 1534
diff --git a/agent/tcf/services/linenumbers.h b/agent/tcf/services/linenumbers.h
index 788ce15a..a9c65953 100644
--- a/agent/tcf/services/linenumbers.h
+++ b/agent/tcf/services/linenumbers.h
@@ -24,7 +24,6 @@
#include <tcf/framework/protocol.h>
#include <tcf/framework/context.h>
-#include <tcf/framework/cpudefs.h>
#if ENABLE_DebugContext
diff --git a/agent/tcf/services/linenumbers_mux.h b/agent/tcf/services/linenumbers_mux.h
index afc85375..cb16a35d 100644
--- a/agent/tcf/services/linenumbers_mux.h
+++ b/agent/tcf/services/linenumbers_mux.h
@@ -21,7 +21,6 @@
#define D_linenumbersMux
#include <tcf/framework/context.h>
-#include <tcf/framework/protocol.h>
#if ENABLE_LineNumbersMux
diff --git a/agent/tcf/services/profiler_sst.h b/agent/tcf/services/profiler_sst.h
index 3fb55d37..3534961e 100644
--- a/agent/tcf/services/profiler_sst.h
+++ b/agent/tcf/services/profiler_sst.h
@@ -22,9 +22,7 @@
#include <tcf/config.h>
-#include <tcf/framework/link.h>
#include <tcf/framework/context.h>
-#include <tcf/services/profiler.h>
/* Add profiling support for debug context 'ctx' */
extern void profiler_sst_add(Context * ctx);
diff --git a/agent/tcf/services/vm.h b/agent/tcf/services/vm.h
index 314bc273..bdba7394 100644
--- a/agent/tcf/services/vm.h
+++ b/agent/tcf/services/vm.h
@@ -24,7 +24,7 @@
#if ENABLE_DebugContext
-#include <tcf/framework/context.h>
+#include <tcf/framework/cpudefs.h>
extern int evaluate_vm_expression(LocationExpressionState * state);

Back to the top