Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/services/elf-symbols.h')
-rw-r--r--agent/tcf/services/elf-symbols.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/agent/tcf/services/elf-symbols.h b/agent/tcf/services/elf-symbols.h
index 348e8e84..989e09cb 100644
--- a/agent/tcf/services/elf-symbols.h
+++ b/agent/tcf/services/elf-symbols.h
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012, 2013 Wind River Systems, Inc. and others.
+ * Copyright (c) 2012, 2014 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
@@ -21,7 +21,7 @@
#include <tcf/config.h>
-#if SERVICE_Symbols && !ENABLE_SymbolsProxy && ENABLE_ELF
+#if SERVICE_Symbols && (!ENABLE_SymbolsProxy || ENABLE_SymbolsMux) && ENABLE_ELF
#include <tcf/framework/context.h>
#include <tcf/services/symbols.h>
@@ -63,7 +63,7 @@ extern int elf_tcf_symbol(Context * ctx, ELF_SymbolInfo * elf_sym, Symbol ** sym
*/
extern int elf_symbol_address(Context * ctx, ELF_SymbolInfo * info, ContextAddress * address);
-#endif /* SERVICE_Symbols && !ENABLE_SymbolsProxy && ENABLE_ELF */
+#endif /* SERVICE_Symbols && (!ENABLE_SymbolsProxy || ENABLE_SymbolsMux) && ENABLE_ELF */
#if ENABLE_ELF

Back to the top