diff options
author | Dave Brolley <brolley@redhat.com> | 2008-09-10 12:24:44 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2008-09-10 12:24:44 -0400 |
commit | 4efa91dd26956c961b2999470ced965a448ed31b (patch) | |
tree | b27b7b323eefbe3303e630809776b626987aa421 /runtime/sym.h | |
parent | bb997bd81d90b94e734c8c93402353eddd0bc408 (diff) | |
parent | 675fb1ddeec8cd22e17ab989f8a813a375ae6226 (diff) | |
download | systemtap-steved-4efa91dd26956c961b2999470ced965a448ed31b.tar.gz systemtap-steved-4efa91dd26956c961b2999470ced965a448ed31b.tar.xz systemtap-steved-4efa91dd26956c961b2999470ced965a448ed31b.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/sym.h')
-rw-r--r-- | runtime/sym.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/sym.h b/runtime/sym.h index b2fb8ee9..5888d2c7 100644 --- a/runtime/sym.h +++ b/runtime/sym.h @@ -33,7 +33,12 @@ struct _stp_module { /* any notifier hooks that will tell us when a module */ /* is unloading. */ unsigned long module; /* XXX: why not struct module * ? */ - + + /* This is to undo .debug_frame relocation performed by elfutils, */ + /* which is done during the translate phase when we encode the */ + /* unwind data into the module. See adjustStartLoc() in unwind.c. */ + unsigned long dwarf_module_base; + /* the stack unwind data for this module */ void *unwind_data; void *unwind_hdr; |