]> git.pld-linux.org Git - packages/gdb.git/blame - gdb-6.3-ia64-gcore-page0-20050421.patch
- obsolete file
[packages/gdb.git] / gdb-6.3-ia64-gcore-page0-20050421.patch
CommitLineData
3a58abaf
AM
1Index: gdb-6.8.50.20081128/gdb/gcore.c
2===================================================================
3--- gdb-6.8.50.20081128.orig/gdb/gcore.c 2008-09-11 16:27:34.000000000 +0200
4+++ gdb-6.8.50.20081128/gdb/gcore.c 2008-12-01 16:39:04.000000000 +0100
5@@ -475,8 +475,14 @@ gcore_copy_callback (bfd *obfd, asection
6 if (size > total_size)
7 size = total_size;
8
9+ /* Warn if read error occurs except if we were trying to read the
10+ first page for ia64. The first page is marked readable, but it cannot
11+ be read. */
12 if (target_read_memory (bfd_section_vma (obfd, osec) + offset,
13- memhunk, size) != 0)
14+ memhunk, size) != 0
15+ && (strcmp (gdbarch_bfd_arch_info (current_gdbarch)->arch_name,
16+ "ia64")
17+ || bfd_section_vma (obfd, osec) != 0))
18 {
19 warning (_("Memory read failed for corefile section, %s bytes at 0x%s."),
20 plongest (size), paddr (bfd_section_vma (obfd, osec)));
This page took 0.036818 seconds and 4 git commands to generate.