Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authoreutarass2010-06-22 22:48:11 +0000
committereutarass2010-06-22 22:48:11 +0000
commitbe4ff0d8b5893987fa01ace917bbabfb95c7eeae (patch)
treed58caeb2a1024d3725ba2f79a53e7079a372ad4a /server
parent5999110169efb1fc6fbe0111391b66eaabc21c8c (diff)
downloadorg.eclipse.tcf.agent-be4ff0d8b5893987fa01ace917bbabfb95c7eeae.tar.gz
org.eclipse.tcf.agent-be4ff0d8b5893987fa01ace917bbabfb95c7eeae.tar.xz
org.eclipse.tcf.agent-be4ff0d8b5893987fa01ace917bbabfb95c7eeae.zip
TCF Agent: added proper handling of function type symbols in ELF version of Symbols service.
Diffstat (limited to 'server')
-rw-r--r--server/services/context-proxy.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/services/context-proxy.c b/server/services/context-proxy.c
index bb93ed2b..c8081d49 100644
--- a/server/services/context-proxy.c
+++ b/server/services/context-proxy.c
@@ -1396,6 +1396,11 @@ int get_top_frame(Context * ctx) {
return STACK_TOP_FRAME;
}
+unsigned context_word_size(Context * ctx) {
+ RegisterDefinition * pc = get_PC_definition(ctx);
+ return pc->size;
+}
+
static void channel_close_listener(Channel * c) {
LINK * l = NULL;

Back to the top