aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authornealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-12-01 21:35:52 +0000
committernealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-12-01 21:35:52 +0000
commit096992fac73756cfa0974a94754329f30fd4e786 (patch)
treec38f1e56f91e8f167b9e5012662f31fc2da434aa /src/common
parentdon't output duplicate filenames in PDBSourceLineWriter. r=mark at http://bre... (diff)
downloadbreakpad-096992fac73756cfa0974a94754329f30fd4e786.tar.xz
Upstreaming several patches from Chrome:
Build fix for systems where sys/user.h needs sys/types.h.... http://breakpad.appspot.com/40002 MDRawSystemInfo.processor_level refers to the CPU family, not the cpuid level.. http://breakpad.appspot.com/40003 Use MD_MODULE_SIZE in place of sizeof(MDRawModule). http://breakpad.appspot.com/39003 Linux x64 compile fix. http://breakpad.appspot.com/40004 Include linux_syscall_support.h to get definition of NT_PRXFPREG. This is Chromium commit 23659. http://breakpad.appspot.com/40005 Build breakpad / crash reporting on Linux 64-bit. This is Chromium commit 23396. http://breakpad.appspot.com/40006 Fix #includes in a couple unit tests. http://breakpad.appspot.com/41001 Clean up unused headers / files for Linux dump_syms. http://breakpad.appspot.com/40002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@432 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r--src/common/linux/dump_symbols.cc4
-rw-r--r--src/common/linux/linux_libc_support_unittest.cc2
-rw-r--r--src/common/linux/memory.h5
-rw-r--r--src/common/linux/memory_unittest.cc2
4 files changed, 8 insertions, 5 deletions
diff --git a/src/common/linux/dump_symbols.cc b/src/common/linux/dump_symbols.cc
index 64fcb34b..a7888189 100644
--- a/src/common/linux/dump_symbols.cc
+++ b/src/common/linux/dump_symbols.cc
@@ -52,10 +52,8 @@
#include "common/linux/dump_symbols.h"
#include "common/linux/file_id.h"
-#include "common/linux/guid_creator.h"
#include "common/linux/module.h"
#include "common/linux/stabs_reader.h"
-#include "processor/scoped_ptr.h"
// This namespace contains helper functions.
namespace {
@@ -82,7 +80,7 @@ static std::string Demangle(const std::string &mangled) {
// Fix offset into virtual address by adding the mapped base into offsets.
// Make life easier when want to find something by offset.
static void FixAddress(void *obj_base) {
- ElfW(Word) base = reinterpret_cast<ElfW(Word)>(obj_base);
+ ElfW(Addr) base = reinterpret_cast<ElfW(Addr)>(obj_base);
ElfW(Ehdr) *elf_header = static_cast<ElfW(Ehdr) *>(obj_base);
elf_header->e_phoff += base;
elf_header->e_shoff += base;
diff --git a/src/common/linux/linux_libc_support_unittest.cc b/src/common/linux/linux_libc_support_unittest.cc
index 3b5d6114..d3907e94 100644
--- a/src/common/linux/linux_libc_support_unittest.cc
+++ b/src/common/linux/linux_libc_support_unittest.cc
@@ -27,7 +27,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#include "breakpad/linux/linux_libc_support.h"
+#include "common/linux/linux_libc_support.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
diff --git a/src/common/linux/memory.h b/src/common/linux/memory.h
index 7cae40ef..f10a194b 100644
--- a/src/common/linux/memory.h
+++ b/src/common/linux/memory.h
@@ -86,8 +86,13 @@ class PageAllocator {
private:
uint8_t *GetNPages(unsigned num_pages) {
+#ifdef __x86_64
+ void *a = sys_mmap(NULL, page_size_ * num_pages, PROT_READ | PROT_WRITE,
+ MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+#else
void *a = sys_mmap2(NULL, page_size_ * num_pages, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+#endif
if (a == MAP_FAILED)
return NULL;
diff --git a/src/common/linux/memory_unittest.cc b/src/common/linux/memory_unittest.cc
index 22b64398..66c83465 100644
--- a/src/common/linux/memory_unittest.cc
+++ b/src/common/linux/memory_unittest.cc
@@ -27,7 +27,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#include "breakpad/linux/memory.h"
+#include "common/linux/memory.h"
#include "testing/gtest/include/gtest/gtest.h"
using namespace google_breakpad;