Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-11-11 01:36:40 +0000
committerEugene Tarassov2011-11-11 01:36:40 +0000
commit846c7264e3daaebb87dc9ab959bbfd2472abfd0e (patch)
tree6e96e22e7acccb509f6c03cbe264f900a72b2eb8 /agent/tcf/system/Windows
parenta107edc216f94c5ec059fdf74541908bc7e979bb (diff)
downloadorg.eclipse.tcf.agent-846c7264e3daaebb87dc9ab959bbfd2472abfd0e.tar.gz
org.eclipse.tcf.agent-846c7264e3daaebb87dc9ab959bbfd2472abfd0e.tar.xz
org.eclipse.tcf.agent-846c7264e3daaebb87dc9ab959bbfd2472abfd0e.zip
#include directives changed to include "tcf" as the first directory name in header file path.
Diffstat (limited to 'agent/tcf/system/Windows')
-rw-r--r--agent/tcf/system/Windows/context-win32.c30
-rw-r--r--agent/tcf/system/Windows/context-win32.h4
-rw-r--r--agent/tcf/system/Windows/pthreads-win32.c8
-rw-r--r--agent/tcf/system/Windows/windbgcache.c12
-rw-r--r--agent/tcf/system/Windows/windbgcache.h2
5 files changed, 28 insertions, 28 deletions
diff --git a/agent/tcf/system/Windows/context-win32.c b/agent/tcf/system/Windows/context-win32.c
index 9da05678..e85cbb11 100644
--- a/agent/tcf/system/Windows/context-win32.c
+++ b/agent/tcf/system/Windows/context-win32.c
@@ -17,7 +17,7 @@
* This module handles process/thread OS contexts and their state machine.
*/
-#include <config.h>
+#include <tcf/config.h>
#if defined(WIN32)
@@ -27,19 +27,19 @@
#include <assert.h>
#include <errno.h>
#include <signal.h>
-#include <framework/context.h>
-#include <framework/events.h>
-#include <framework/errors.h>
-#include <framework/trace.h>
-#include <framework/myalloc.h>
-#include <framework/waitpid.h>
-#include <framework/signames.h>
-#include <services/breakpoints.h>
-#include <services/memorymap.h>
-#include <services/runctrl.h>
-#include <system/Windows/context-win32.h>
-#include <system/Windows/regset.h>
-#include <system/Windows/windbgcache.h>
+#include <tcf/framework/context.h>
+#include <tcf/framework/events.h>
+#include <tcf/framework/errors.h>
+#include <tcf/framework/trace.h>
+#include <tcf/framework/myalloc.h>
+#include <tcf/framework/waitpid.h>
+#include <tcf/framework/signames.h>
+#include <tcf/services/breakpoints.h>
+#include <tcf/services/memorymap.h>
+#include <tcf/services/runctrl.h>
+#include <tcf/system/Windows/context-win32.h>
+#include <tcf/system/Windows/regset.h>
+#include <tcf/system/Windows/windbgcache.h>
#if !defined(USE_HW_BPS)
# define USE_HW_BPS 1
@@ -123,7 +123,7 @@ static unsigned exception_handler_cnt = 0;
static MemoryErrorInfo mem_err_info;
-#include <system/pid-hash.h>
+#include <tcf/system/pid-hash.h>
#define EXCEPTION_DEBUGGER_IO 0x406D1388
diff --git a/agent/tcf/system/Windows/context-win32.h b/agent/tcf/system/Windows/context-win32.h
index b6a457fa..8c49751e 100644
--- a/agent/tcf/system/Windows/context-win32.h
+++ b/agent/tcf/system/Windows/context-win32.h
@@ -20,8 +20,8 @@
#ifndef D_context_win32
#define D_context_win32
-#include <config.h>
-#include <framework/context.h>
+#include <tcf/config.h>
+#include <tcf/framework/context.h>
extern HANDLE get_context_handle(Context * ctx);
extern HANDLE get_context_file_handle(Context * ctx);
diff --git a/agent/tcf/system/Windows/pthreads-win32.c b/agent/tcf/system/Windows/pthreads-win32.c
index 82c9204b..3f019c93 100644
--- a/agent/tcf/system/Windows/pthreads-win32.c
+++ b/agent/tcf/system/Windows/pthreads-win32.c
@@ -13,14 +13,14 @@
* Wind River Systems - initial API and implementation
*******************************************************************************/
-#include <config.h>
+#include <tcf/config.h>
#if defined(WIN32) && !defined(DISABLE_PTHREADS_WIN32)
#include <assert.h>
-#include <framework/myalloc.h>
-#include <framework/errors.h>
-#include <system/Windows/pthreads-win32.h>
+#include <tcf/framework/myalloc.h>
+#include <tcf/framework/errors.h>
+#include <tcf/system/Windows/pthreads-win32.h>
/*********************************************************************
Support of pthreads on Windows is implemented according to
diff --git a/agent/tcf/system/Windows/windbgcache.c b/agent/tcf/system/Windows/windbgcache.c
index 0d2d0ce5..e6f094f2 100644
--- a/agent/tcf/system/Windows/windbgcache.c
+++ b/agent/tcf/system/Windows/windbgcache.c
@@ -18,7 +18,7 @@
* Current implementation delegates all its job to DBGHELP.DLL.
*/
-#include <config.h>
+#include <tcf/config.h>
#if defined(WIN32) && !ENABLE_ELF
# define ENABLE_PE_Symbols ((SERVICE_LineNumbers && !ENABLE_LineNumbersProxy) || (SERVICE_Symbols && !ENABLE_SymbolsProxy))
@@ -33,11 +33,11 @@
#include <assert.h>
#include <stdio.h>
#include <wchar.h>
-#include <system/Windows/windbgcache.h>
-#include <system/Windows/context-win32.h>
-#include <framework/trace.h>
-#include <framework/myalloc.h>
-#include <services/memorymap.h>
+#include <tcf/system/Windows/windbgcache.h>
+#include <tcf/system/Windows/context-win32.h>
+#include <tcf/framework/trace.h>
+#include <tcf/framework/myalloc.h>
+#include <tcf/services/memorymap.h>
static HINSTANCE dbghelp_dll = NULL;
diff --git a/agent/tcf/system/Windows/windbgcache.h b/agent/tcf/system/Windows/windbgcache.h
index ecca5497..670cad7d 100644
--- a/agent/tcf/system/Windows/windbgcache.h
+++ b/agent/tcf/system/Windows/windbgcache.h
@@ -20,7 +20,7 @@
#ifndef D_windbgcache
#define D_windbgcache
-#include <config.h>
+#include <tcf/config.h>
#if defined(WIN32)

Back to the top