]> git.pld-linux.org Git - packages/gdb.git/blame - gdb-6.3-ia64-gcore-page0-20050421.patch
- typo
[packages/gdb.git] / gdb-6.3-ia64-gcore-page0-20050421.patch
CommitLineData
6ed6bacf 1Index: gdb-7.2.50.20110107/gdb/gcore.c
3a58abaf 2===================================================================
6ed6bacf
AM
3--- gdb-7.2.50.20110107.orig/gdb/gcore.c 2011-01-05 23:22:49.000000000 +0100
4+++ gdb-7.2.50.20110107/gdb/gcore.c 2011-01-07 09:04:28.000000000 +0100
5@@ -534,8 +534,14 @@ gcore_copy_callback (bfd *obfd, asection
3a58abaf
AM
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
7566401a 15+ && (strcmp (gdbarch_bfd_arch_info (target_gdbarch)->arch_name,
3a58abaf
AM
16+ "ia64")
17+ || bfd_section_vma (obfd, osec) != 0))
18 {
6ed6bacf
AM
19 warning (_("Memory read failed for corefile "
20 "section, %s bytes at %s."),
This page took 0.024638 seconds and 4 git commands to generate.