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/framework/cpudefs.c
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/framework/cpudefs.c')
-rw-r--r--agent/tcf/framework/cpudefs.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/agent/tcf/framework/cpudefs.c b/agent/tcf/framework/cpudefs.c
index fbdfa28a..5d9c5f5d 100644
--- a/agent/tcf/framework/cpudefs.c
+++ b/agent/tcf/framework/cpudefs.c
@@ -17,20 +17,20 @@
* This module contains definitions of target CPU registers and stack frames.
*/
-#include <config.h>
+#include <tcf/config.h>
#if ENABLE_DebugContext
#include <stddef.h>
#include <stdio.h>
#include <assert.h>
-#include <framework/cpudefs.h>
-#include <framework/errors.h>
-#include <framework/context.h>
-#include <framework/myalloc.h>
-#include <framework/exceptions.h>
-#include <services/symbols.h>
-#include <machine/cpudefs-ext.h>
+#include <tcf/framework/cpudefs.h>
+#include <tcf/framework/errors.h>
+#include <tcf/framework/context.h>
+#include <tcf/framework/myalloc.h>
+#include <tcf/framework/exceptions.h>
+#include <tcf/services/symbols.h>
+#include <tcf/machine/cpudefs-ext.h>
int read_reg_value(StackFrame * frame, RegisterDefinition * reg_def, uint64_t * value) {
uint8_t buf[8];

Back to the top