Module Name: src Committed By: joerg Date: Mon Apr 28 13:39:23 UTC 2014
Modified Files: src/sys/lib/libunwind: AddressSpace.hpp UnwindCursor.hpp Log Message: GC unwind_info_size. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/lib/libunwind/AddressSpace.hpp cvs rdiff -u -r1.2 -r1.3 src/sys/lib/libunwind/UnwindCursor.hpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/lib/libunwind/AddressSpace.hpp diff -u src/sys/lib/libunwind/AddressSpace.hpp:1.4 src/sys/lib/libunwind/AddressSpace.hpp:1.5 --- src/sys/lib/libunwind/AddressSpace.hpp:1.4 Wed Apr 2 22:22:37 2014 +++ src/sys/lib/libunwind/AddressSpace.hpp Mon Apr 28 13:39:23 2014 @@ -41,7 +41,6 @@ struct unw_proc_info_t { uintptr_t lsda; // Address of Language Specific Data Area uintptr_t handler; // Personality routine uintptr_t extra_args; // Extra stack space for frameless routines - uint32_t unwind_info_size; // Size of DWARF unwind info uintptr_t unwind_info; // Address of DWARF unwind info }; Index: src/sys/lib/libunwind/UnwindCursor.hpp diff -u src/sys/lib/libunwind/UnwindCursor.hpp:1.2 src/sys/lib/libunwind/UnwindCursor.hpp:1.3 --- src/sys/lib/libunwind/UnwindCursor.hpp:1.2 Thu Mar 20 01:35:45 2014 +++ src/sys/lib/libunwind/UnwindCursor.hpp Mon Apr 28 13:39:23 2014 @@ -135,7 +135,6 @@ void UnwindCursor<A, R>::setInfoBasedOnI fInfo.handler = cieInfo.personality; fInfo.extra_args = prolog.spExtraArgSize; fInfo.unwind_info = fdeInfo.fdeStart; - fInfo.unwind_info_size = fdeInfo.fdeLength; } }; // namespace _Unwind