Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-02-08 00:28:58 +0000
committerEugene Tarassov2013-02-08 00:28:58 +0000
commit5f3f9858652e3933900fc60eb703e230348826dc (patch)
tree6727f226e6393eef77828ed61d084665e8f4a52d /agent/tcf/config.h
parent6502e502ad220bf518e308be10d2bd290fff3ab5 (diff)
downloadorg.eclipse.tcf.agent-5f3f9858652e3933900fc60eb703e230348826dc.tar.gz
org.eclipse.tcf.agent-5f3f9858652e3933900fc60eb703e230348826dc.tar.xz
org.eclipse.tcf.agent-5f3f9858652e3933900fc60eb703e230348826dc.zip
TCF Agent: initial implementation of the Disassembly service
Diffstat (limited to 'agent/tcf/config.h')
-rw-r--r--agent/tcf/config.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/agent/tcf/config.h b/agent/tcf/config.h
index 78e07e4f..e1a584e2 100644
--- a/agent/tcf/config.h
+++ b/agent/tcf/config.h
@@ -115,6 +115,9 @@
#if !defined(SERVICE_DPrintf)
#define SERVICE_DPrintf (SERVICE_Expressions && SERVICE_Streams)
#endif
+#if !defined(SERVICE_Disassembly)
+#define SERVICE_Disassembly (SERVICE_Memory)
+#endif
#if !defined(ENABLE_Plugins)
# if TARGET_UNIX && defined(PATH_Plugins)
@@ -158,7 +161,8 @@
#endif
#if !defined(ENABLE_DebugContext)
-# define ENABLE_DebugContext (ENABLE_ContextProxy || SERVICE_RunControl || SERVICE_Breakpoints || SERVICE_Memory || SERVICE_Registers || SERVICE_StackTrace)
+# define ENABLE_DebugContext (ENABLE_ContextProxy || SERVICE_RunControl || SERVICE_Breakpoints || \
+ SERVICE_Memory || SERVICE_Registers || SERVICE_StackTrace || SERVICE_Disassembly)
#endif
#if !defined(ENABLE_SymbolsProxy)
@@ -281,4 +285,8 @@
# define ENABLE_ExternalStackcrawl 0
#endif
+#if !defined(ENABLE_ContextISA)
+# define ENABLE_ContextISA SERVICE_Disassembly
+#endif
+
#endif /* D_config */

Back to the top