From 35c41e00ee2cf9280fe0122c75877ba70b41bb46 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Fri, 25 Jun 2010 16:56:16 +0000 Subject: Breakpad Mac symbol dumper: Add new Mach-O reader class. This patch adds files defining new classes in the google_breakpad::Mach_O namespace for parsing fat binaries and Mach-O files. These are used in the new dumper to handle STABS debugging information, DWARF call frame information, and .eh_frame exception handling stack walking information. These new classes are independent of endianness and word size, and therefore can be used on binaries of all the relevant architectures: x86, x86_64, ppc, and ARM. The patch adds a complete set of unit tests for the new classes. A=jimb R=mark (http://breakpad.appspot.com/93001/show, http://breakpad.appspot.com/115001/show) git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@610 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/test_assembler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common/test_assembler.h') diff --git a/src/common/test_assembler.h b/src/common/test_assembler.h index 19782b92..5ce6b0c8 100644 --- a/src/common/test_assembler.h +++ b/src/common/test_assembler.h @@ -68,7 +68,7 @@ using std::list; using std::string; using std::vector; -namespace TestAssembler { +namespace test_assembler { // A Label represents a value not yet known that we need to store in a // section. As long as all the labels a section refers to are defined @@ -475,7 +475,7 @@ class Section { Label start_; }; -} // namespace TestAssembler +} // namespace test_assembler } // namespace google_breakpad #endif // PROCESSOR_TEST_ASSEMBLER_H_ -- cgit v1.2.1