diff options
author | Dave Brolley <brolley@redhat.com> | 2009-05-22 14:08:00 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-05-22 14:08:00 -0400 |
commit | c5e0f4ba999fac089cbec076549cb9cd14cd58ed (patch) | |
tree | b4ef9eb1fd943909c77d5f3d85379f4fd4ae2c01 /runtime/sym.h | |
parent | d92fe9b3bfab353e5e727d8580a125bbd4fdd27a (diff) | |
parent | 1208cc21f63fff917e7817487d727d4cbe12d0ea (diff) | |
download | systemtap-steved-c5e0f4ba999fac089cbec076549cb9cd14cd58ed.tar.gz systemtap-steved-c5e0f4ba999fac089cbec076549cb9cd14cd58ed.tar.xz systemtap-steved-c5e0f4ba999fac089cbec076549cb9cd14cd58ed.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/sym.h')
-rw-r--r-- | runtime/sym.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/sym.h b/runtime/sym.h index 80c334fb..7e28ebe6 100644 --- a/runtime/sym.h +++ b/runtime/sym.h @@ -42,11 +42,13 @@ struct _stp_module { unsigned long dwarf_module_base; /* the stack unwind data for this module */ - void *unwind_data; + void *debug_frame; + void *eh_frame; void *unwind_hdr; - uint32_t unwind_data_len; + uint32_t debug_frame_len; + uint32_t eh_frame_len; uint32_t unwind_hdr_len; - uint32_t unwind_is_ehframe; /* unwind data comes from .eh_frame */ + unsigned long eh_frame_addr; /* Orig load address (offset) .eh_frame */ /* build-id information */ unsigned char *build_id_bits; unsigned long build_id_offset; |