[Crosstoolchain-logs] [gdb-doc] 01/02: Imported Upstream version 7.7.1

Samuel Bronson naesten-guest at moszumanska.debian.org
Sun May 25 00:36:25 UTC 2014


This is an automated email from the git hooks/post-receive script.

naesten-guest pushed a commit to branch master
in repository gdb-doc.

commit eb4888417eaf12e935271f4bfb41ac800d87ed78
Author: Samuel Bronson <naesten at gmail.com>
Date:   Sat May 24 00:03:32 2014 -0400

    Imported Upstream version 7.7.1
---
 bfd/ChangeLog                                      |   25 +
 bfd/bfd-in.h                                       |    5 -
 bfd/bfd-in2.h                                      |   41 +-
 bfd/bfd.c                                          |    8 +
 bfd/cache.c                                        |    2 +-
 bfd/doc/bfd.info                                   |  146 ++-
 bfd/doc/bfdt.texi                                  |    8 +
 bfd/doc/bfdver.texi                                |    2 +-
 bfd/doc/section.texi                               |   26 +
 bfd/rs6000-core.c                                  |    4 +-
 bfd/section.c                                      |   26 +
 bfd/version.h                                      |    2 +-
 djunpack.bat                                       |    4 +-
 gdb/ChangeLog                                      |   77 ++
 gdb/MAINTAINERS                                    |    1 +
 gdb/auto-load.c                                    |    6 +-
 gdb/avr-tdep.c                                     |   11 +-
 gdb/dcache.c                                       |   88 +-
 gdb/dcache.h                                       |   12 +-
 gdb/doc/gcore.1                                    |    2 +-
 gdb/doc/gdb.1                                      |    2 +-
 gdb/doc/gdb.info                                   | 1280 ++++++++++----------
 gdb/doc/gdb.info-1                                 |    6 +-
 gdb/doc/gdb.info-5                                 |   58 +-
 gdb/doc/gdbinit.5                                  |    2 +-
 gdb/doc/gdbserver.1                                |    2 +-
 gdb/infrun.c                                       |    6 +-
 gdb/po/gdb.pot                                     |  384 +++---
 gdb/python/py-linetable.c                          |    4 +-
 gdb/target.c                                       |   49 +-
 gdb/testsuite/ChangeLog                            |   27 +
 gdb/testsuite/gdb.base/auto-load-script            |   17 +
 gdb/testsuite/gdb.base/auto-load.c                 |   22 +
 gdb/testsuite/gdb.base/auto-load.exp               |   41 +
 gdb/testsuite/gdb.base/breakpoint-shadow.exp       |   38 +-
 .../signal-while-stepping-over-bp-other-thread.c   |  145 +++
 .../signal-while-stepping-over-bp-other-thread.exp |  120 ++
 gdb/version.in                                     |    2 +-
 gdb/windows-nat.c                                  |   49 +-
 md5.sum                                            |   71 +-
 40 files changed, 1723 insertions(+), 1098 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 894b0b9..96850d8 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,28 @@
+2014-04-24  Nick Clifton  <nickc at redhat.com>
+
+	2014-01-29  Nick Clifton  <nickc at redhat.com>
+	PR build/16873
+	* bfd-in.h (bfd_set_section_vma): Delete.
+	(bfd_set_section_alignment): Delete.
+	(bfd_set_section_userdata): Delete.
+	(bfd_set_cacheable): Delete.
+	* bfd.c (bfd_set_cacheable): New static inline function.
+	* section.c (bfd_set_section_userdata): Likewise.
+	(bfd_set_section_vma): Likewise.
+	(bfd_set_section_alignment): Likewise.
+	* bfd-in2.h: Regenerate.
+
+2014-03-12  Pedro Alves  <palves at redhat.com>
+
+	PR gdb/16696
+	* rs6000-core.c (rs6000coff_core_p): Cast pointers to bfd_vma
+	through ptr_to_uint instead of through long.
+
+2014-02-17  Rainer Orth  <ro at CeBiTec.Uni-Bielefeld.DE>
+
+	PR build/16550
+	* cache.c (bfd_cache_max_open): Cast RLIM_INFINITY to rlim_t.
+
 2014-01-07  Tom Tromey  <tromey at redhat.com>
 
 	* elf32-xtensa.c (vsprint_msg): Don't use old VA_* compatibility
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h
index 3afd71b..c7c5a7d 100644
--- a/bfd/bfd-in.h
+++ b/bfd/bfd-in.h
@@ -292,9 +292,6 @@ typedef struct bfd_section *sec_ptr;
 
 #define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
 
-#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), ((ptr)->user_set_vma = TRUE), TRUE)
-#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),TRUE)
-#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),TRUE)
 /* Find the address one past the end of SEC.  */
 #define bfd_get_section_limit(bfd, sec) \
   (((bfd)->direction != write_direction && (sec)->rawsize != 0	\
@@ -517,8 +514,6 @@ extern void warn_deprecated (const char *, const char *, int, const char *);
 
 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
 
-#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = bool), TRUE)
-
 extern bfd_boolean bfd_cache_close
   (bfd *abfd);
 /* NB: This declaration should match the autogenerated one in libbfd.h.  */
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h
index 71996db..b5aeb40 100644
--- a/bfd/bfd-in2.h
+++ b/bfd/bfd-in2.h
@@ -299,9 +299,6 @@ typedef struct bfd_section *sec_ptr;
 
 #define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
 
-#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), ((ptr)->user_set_vma = TRUE), TRUE)
-#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),TRUE)
-#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),TRUE)
 /* Find the address one past the end of SEC.  */
 #define bfd_get_section_limit(bfd, sec) \
   (((bfd)->direction != write_direction && (sec)->rawsize != 0	\
@@ -524,8 +521,6 @@ extern void warn_deprecated (const char *, const char *, int, const char *);
 
 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
 
-#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = bool), TRUE)
-
 extern bfd_boolean bfd_cache_close
   (bfd *abfd);
 /* NB: This declaration should match the autogenerated one in libbfd.h.  */
@@ -1029,7 +1024,7 @@ bfd *bfd_openr (const char *filename, const char *target);
 
 bfd *bfd_fdopenr (const char *filename, const char *target, int fd);
 
-bfd *bfd_openstreamr (const char *, const char *, void *);
+bfd *bfd_openstreamr (const char * filename, const char * target, void * stream);
 
 bfd *bfd_openr_iovec (const char *filename, const char *target,
     void *(*open_func) (struct bfd *nbfd,
@@ -1596,6 +1591,32 @@ struct relax_table {
   int size;
 };
 
+/* Note: the following are provided as inline functions rather than macros
+   because not all callers use the return value.  A macro implementation
+   would use a comma expression, eg: "((ptr)->foo = val, TRUE)" and some
+   compilers will complain about comma expressions that have no effect.  */
+static inline bfd_boolean
+bfd_set_section_userdata (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, void * val)
+{
+  ptr->userdata = val;
+  return TRUE;
+}
+
+static inline bfd_boolean
+bfd_set_section_vma (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, bfd_vma val)
+{
+  ptr->vma = ptr->lma = val;
+  ptr->user_set_vma = TRUE;
+  return TRUE;
+}
+
+static inline bfd_boolean
+bfd_set_section_alignment (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, unsigned int val)
+{
+  ptr->alignment_power = val;
+  return TRUE;
+}
+
 /* These sections are global, and are managed by BFD.  The application
    and target back end are not permitted to change the values in
    these sections.  */
@@ -6415,6 +6436,14 @@ struct bfd
   unsigned int selective_search : 1;
 };
 
+/* See note beside bfd_set_section_userdata.  */
+static inline bfd_boolean
+bfd_set_cacheable (bfd * abfd, bfd_boolean val)
+{
+  abfd->cacheable = val;
+  return TRUE;
+}
+
 typedef enum bfd_error
 {
   bfd_error_no_error = 0,
diff --git a/bfd/bfd.c b/bfd/bfd.c
index 8d0580c..2d174f3 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -311,6 +311,14 @@ CODE_FRAGMENT
 .  unsigned int selective_search : 1;
 .};
 .
+.{* See note beside bfd_set_section_userdata.  *}
+.static inline bfd_boolean
+.bfd_set_cacheable (bfd * abfd, bfd_boolean val)
+.{
+.  abfd->cacheable = val;
+.  return TRUE;
+.}
+.
 */
 
 #include "sysdep.h"
diff --git a/bfd/cache.c b/bfd/cache.c
index 4d46936..4071a02 100644
--- a/bfd/cache.c
+++ b/bfd/cache.c
@@ -82,7 +82,7 @@ bfd_cache_max_open (void)
 #ifdef HAVE_GETRLIMIT
       struct rlimit rlim;
       if (getrlimit (RLIMIT_NOFILE, &rlim) == 0
-	  && rlim.rlim_cur != RLIM_INFINITY)
+	  && rlim.rlim_cur != (rlim_t) RLIM_INFINITY)
 	max = rlim.rlim_cur / 8;
       else
 #endif /* HAVE_GETRLIMIT */
diff --git a/bfd/doc/bfd.info b/bfd/doc/bfd.info
index 8a50800..7d7cb15 100644
--- a/bfd/doc/bfd.info
+++ b/bfd/doc/bfd.info
@@ -605,6 +605,14 @@ major data about the file and pointers to the rest of the data.
        unsigned int selective_search : 1;
      };
 
+     /* See note beside bfd_set_section_userdata.  */
+     static inline bfd_boolean
+     bfd_set_cacheable (bfd * abfd, bfd_boolean val)
+     {
+       abfd->cacheable = val;
+       return TRUE;
+     }
+
 
 File: bfd.info,  Node: Error reporting,  Next: Miscellaneous,  Prev: typedef bfd,  Up: BFD front end
 
@@ -1771,6 +1779,32 @@ Here is the section structure:
        int size;
      };
 
+     /* Note: the following are provided as inline functions rather than macros
+        because not all callers use the return value.  A macro implementation
+        would use a comma expression, eg: "((ptr)->foo = val, TRUE)" and some
+        compilers will complain about comma expressions that have no effect.  */
+     static inline bfd_boolean
+     bfd_set_section_userdata (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, void * val)
+     {
+       ptr->userdata = val;
+       return TRUE;
+     }
+
+     static inline bfd_boolean
+     bfd_set_section_vma (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, bfd_vma val)
+     {
+       ptr->vma = ptr->lma = val;
+       ptr->user_set_vma = TRUE;
+       return TRUE;
+     }
+
+     static inline bfd_boolean
+     bfd_set_section_alignment (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, unsigned int val)
+     {
+       ptr->alignment_power = val;
+       return TRUE;
+     }
+
      /* These sections are global, and are managed by BFD.  The application
         and target back end are not permitted to change the values in
         these sections.  */
@@ -12934,61 +12968,61 @@ Node: BFD information loss6249
 Node: Canonical format8790
 Node: BFD front end13167
 Node: typedef bfd13591
-Node: Error reporting24309
-Node: Miscellaneous29168
-Node: Memory Usage46298
-Node: Initialization47529
-Node: Sections47988
-Node: Section Input48471
-Node: Section Output49840
-Node: typedef asection52327
-Node: section prototypes77541
-Node: Symbols87809
-Node: Reading Symbols89412
-Node: Writing Symbols90520
-Node: Mini Symbols92264
-Node: typedef asymbol93238
-Node: symbol handling functions99279
-Node: Archives104610
-Node: Formats108638
-Node: Relocations111589
-Node: typedef arelent112316
-Node: howto manager127967
-Node: Core Files239707
-Node: Targets241745
-Node: bfd_target243720
-Node: Architectures266934
-Node: Opening and Closing294041
-Node: Internal308356
-Node: File Caching314703
-Node: Linker Functions316621
-Node: Creating a Linker Hash Table318295
-Node: Adding Symbols to the Hash Table320034
-Node: Differing file formats320934
-Node: Adding symbols from an object file322659
-Node: Adding symbols from an archive324809
-Node: Performing the Final Link327738
-Node: Information provided by the linker328979
-Node: Relocating the section contents330133
-Node: Writing the symbol table331885
-Node: Hash Tables336268
-Node: Creating and Freeing a Hash Table337466
-Node: Looking Up or Entering a String338716
-Node: Traversing a Hash Table339969
-Node: Deriving a New Hash Table Type340758
-Node: Define the Derived Structures341824
-Node: Write the Derived Creation Routine342905
-Node: Write Other Derived Routines345529
-Node: BFD back ends346844
-Node: What to Put Where347114
-Node: aout347294
-Node: coff353617
-Node: elf382091
-Node: mmo382492
-Node: File layout383417
-Node: Symbol-table389055
-Node: mmo section mapping392822
-Node: GNU Free Documentation License396476
-Node: BFD Index421539
+Node: Error reporting24512
+Node: Miscellaneous29371
+Node: Memory Usage46501
+Node: Initialization47732
+Node: Sections48191
+Node: Section Input48674
+Node: Section Output50043
+Node: typedef asection52530
+Node: section prototypes78656
+Node: Symbols88924
+Node: Reading Symbols90527
+Node: Writing Symbols91635
+Node: Mini Symbols93379
+Node: typedef asymbol94353
+Node: symbol handling functions100394
+Node: Archives105725
+Node: Formats109753
+Node: Relocations112704
+Node: typedef arelent113431
+Node: howto manager129082
+Node: Core Files240822
+Node: Targets242860
+Node: bfd_target244835
+Node: Architectures268049
+Node: Opening and Closing295156
+Node: Internal309471
+Node: File Caching315818
+Node: Linker Functions317736
+Node: Creating a Linker Hash Table319410
+Node: Adding Symbols to the Hash Table321149
+Node: Differing file formats322049
+Node: Adding symbols from an object file323774
+Node: Adding symbols from an archive325924
+Node: Performing the Final Link328853
+Node: Information provided by the linker330094
+Node: Relocating the section contents331248
+Node: Writing the symbol table333000
+Node: Hash Tables337383
+Node: Creating and Freeing a Hash Table338581
+Node: Looking Up or Entering a String339831
+Node: Traversing a Hash Table341084
+Node: Deriving a New Hash Table Type341873
+Node: Define the Derived Structures342939
+Node: Write the Derived Creation Routine344020
+Node: Write Other Derived Routines346644
+Node: BFD back ends347959
+Node: What to Put Where348229
+Node: aout348409
+Node: coff354732
+Node: elf383206
+Node: mmo383607
+Node: File layout384532
+Node: Symbol-table390170
+Node: mmo section mapping393937
+Node: GNU Free Documentation License397591
+Node: BFD Index422654
 
 End Tag Table
diff --git a/bfd/doc/bfdt.texi b/bfd/doc/bfdt.texi
index a4ef522..8dc1d60 100644
--- a/bfd/doc/bfdt.texi
+++ b/bfd/doc/bfdt.texi
@@ -286,6 +286,14 @@ struct bfd
   unsigned int selective_search : 1;
 @};
 
+/* See note beside bfd_set_section_userdata.  */
+static inline bfd_boolean
+bfd_set_cacheable (bfd * abfd, bfd_boolean val)
+@{
+  abfd->cacheable = val;
+  return TRUE;
+@}
+
 @end example
 @node Error reporting, Miscellaneous, typedef bfd, BFD front end
 @section Error reporting
diff --git a/bfd/doc/bfdver.texi b/bfd/doc/bfdver.texi
index 33050db..3cd5dbf 100644
--- a/bfd/doc/bfdver.texi
+++ b/bfd/doc/bfdver.texi
@@ -1,4 +1,4 @@
 @set VERSION 2.24.51
 @set VERSION_PACKAGE (GNU Binutils) 
- at set UPDATED February 2014
+ at set UPDATED May 2014
 @set BUGURL @uref{http://www.sourceware.org/bugzilla/}
diff --git a/bfd/doc/section.texi b/bfd/doc/section.texi
index 60b62cf..533788b 100644
--- a/bfd/doc/section.texi
+++ b/bfd/doc/section.texi
@@ -498,6 +498,32 @@ struct relax_table @{
   int size;
 @};
 
+/* Note: the following are provided as inline functions rather than macros
+   because not all callers use the return value.  A macro implementation
+   would use a comma expression, eg: "((ptr)->foo = val, TRUE)" and some
+   compilers will complain about comma expressions that have no effect.  */
+static inline bfd_boolean
+bfd_set_section_userdata (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, void * val)
+@{
+  ptr->userdata = val;
+  return TRUE;
+@}
+
+static inline bfd_boolean
+bfd_set_section_vma (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, bfd_vma val)
+@{
+  ptr->vma = ptr->lma = val;
+  ptr->user_set_vma = TRUE;
+  return TRUE;
+@}
+
+static inline bfd_boolean
+bfd_set_section_alignment (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, unsigned int val)
+@{
+  ptr->alignment_power = val;
+  return TRUE;
+@}
+
 /* These sections are global, and are managed by BFD.  The application
    and target back end are not permitted to change the values in
    these sections.  */
diff --git a/bfd/rs6000-core.c b/bfd/rs6000-core.c
index d9c06b6..38ea66e 100644
--- a/bfd/rs6000-core.c
+++ b/bfd/rs6000-core.c
@@ -585,7 +585,7 @@ rs6000coff_core_p (bfd *abfd)
 	  {
 	    ldi_core = ldinfo.l32.ldinfo_core;
 	    ldi_datasize = ldinfo.l32.ldinfo_datasize;
-	    ldi_dataorg = (bfd_vma) (long) ldinfo.l32.ldinfo_dataorg;
+	    ldi_dataorg = (bfd_vma) (ptr_to_uint) ldinfo.l32.ldinfo_dataorg;
 	    ldi_next = ldinfo.l32.ldinfo_next;
 	  }
 
@@ -627,7 +627,7 @@ rs6000coff_core_p (bfd *abfd)
 	      }
 	    else
 	      {
-		vminfo_addr = (bfd_vma) (long) vminfo.old.vminfo_addr;
+		vminfo_addr = (bfd_vma) (ptr_to_uint) vminfo.old.vminfo_addr;
 		vminfo_size = vminfo.old.vminfo_size;
 		vminfo_offset = vminfo.old.vminfo_offset;
 	      }
diff --git a/bfd/section.c b/bfd/section.c
index fb19d8c..a661228 100644
--- a/bfd/section.c
+++ b/bfd/section.c
@@ -542,6 +542,32 @@ CODE_FRAGMENT
 .  int size;
 .};
 .
+.{* Note: the following are provided as inline functions rather than macros
+.   because not all callers use the return value.  A macro implementation
+.   would use a comma expression, eg: "((ptr)->foo = val, TRUE)" and some
+.   compilers will complain about comma expressions that have no effect.  *}
+.static inline bfd_boolean
+.bfd_set_section_userdata (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, void * val)
+.{
+.  ptr->userdata = val;
+.  return TRUE;
+.}
+.
+.static inline bfd_boolean
+.bfd_set_section_vma (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, bfd_vma val)
+.{
+.  ptr->vma = ptr->lma = val;
+.  ptr->user_set_vma = TRUE;
+.  return TRUE;
+.}
+.
+.static inline bfd_boolean
+.bfd_set_section_alignment (bfd * abfd ATTRIBUTE_UNUSED, asection * ptr, unsigned int val)
+.{
+.  ptr->alignment_power = val;
+.  return TRUE;
+.}
+.
 .{* These sections are global, and are managed by BFD.  The application
 .   and target back end are not permitted to change the values in
 .   these sections.  *}
diff --git a/bfd/version.h b/bfd/version.h
index 6a3db00..a9271cd 100644
--- a/bfd/version.h
+++ b/bfd/version.h
@@ -1,4 +1,4 @@
-#define BFD_VERSION_DATE 20140206
+#define BFD_VERSION_DATE 20140505
 #define BFD_VERSION @bfd_version@
 #define BFD_VERSION_STRING  @bfd_version_package@ @bfd_version_string@
 #define REPORT_BUGS_TO @report_bugs_to@
diff --git a/djunpack.bat b/djunpack.bat
index 80d4889..6b970de 100644
--- a/djunpack.bat
+++ b/djunpack.bat
@@ -17,8 +17,8 @@ Rem
 Rem The following 2 lines need to be changed with each new GDB release, to
 Rem be identical to the name of the top-level directory where the GDB
 Rem distribution unpacks itself.
-set GDBVER=gdb-7.7
-if "%GDBVER%"=="gdb-7.7" GoTo EnvOk
+set GDBVER=gdb-7.7.1
+if "%GDBVER%"=="gdb-7.7.1" GoTo EnvOk
 Rem If their environment space is too small, re-exec with a larger one
 command.com /e:4096 /c %0 %1
 GoTo End
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1e0964c..e3c7e83 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,80 @@
+2014-05-05  Joel Brobecker  <brobecker at adacore.com>
+
+	* version.in: Set GDB version number to 7.7.1.
+
+2014-04-19  Eli Zaretskii  <eliz at gnu.org>
+
+	PR gdb/14018
+	* windows-nat.c (thread_rec): Don't display a warning when
+	SuspendThread fails with ERROR_ACCESS_DENIED.  If SuspendThread
+	fails for any reason, set th->suspended to -1, so that we don't
+	try to resume such a thread.  Also, don't return NULL in these
+	cases, to avoid completely ruin the session due to "PC register is
+	not available" error.
+	(do_windows_fetch_inferior_registers): Check errors in
+	GetThreadContext call.
+	(windows_continue): Accept an additional argument KILLED; if not
+	zero, ignore errors in the SetThreadContext call, since the
+	inferior was killed and is shutting down.
+	(windows_resume, get_windows_debug_event)
+	(windows_create_inferior, windows_mourn_inferior)
+	(windows_kill_inferior): All callers of windows_continue changed
+	to adjust to its new calling sequence.
+
+2014-04-11  Pierre Langlois  <pierre.langlois at embecosm.com>
+
+	PR backtrace/16721
+	PR backtrace/16832
+	* avr-tdep.c (struct gdbarch_tdep): Mention avrxmega in the comment.
+	(avr_gdbarch_init): Add xmega architectures given by bfd_architecture
+	when setting the size of call_length.
+	(avr_scan_prologue): Accept push r1 instruction for small stack
+	allocation.
+	* MAINTAINERS (Write After Approval): Add "Pierre Langlois".
+
+2014-03-05  Pedro Alves  <palves at redhat.com>
+
+	PR gdb/16575
+	* dcache.c (dcache_poke_byte): Constify ptr parameter.  Return
+	void.  Update comment.
+	(dcache_xfer_memory): Delete.
+	(dcache_read_memory_partial): New, based on the read bits of
+	dcache_xfer_memory.
+	(dcache_update): Add status parameter.  Use ULONGEST for len, and
+	adjust.  Discard cache lines if the reason for the update was
+	error.
+	* dcache.h (dcache_xfer_memory): Delete declaration.
+	(dcache_read_memory_partial): New declaration.
+	(dcache_update): Update prototype.
+	* target.c (raw_memory_xfer_partial): Update the dcache here.
+	(memory_xfer_partial_1): Don't handle dcache writes here.
+
+2014-02-26  Pedro Alves  <palves at redhat.com>
+
+	PR breakpoints/16292
+	* infrun.c (handle_signal_stop) <signal arrives while stepping
+	over a breakpoint>: Switch back to the stepping thread.
+
+2014-02-25  Jan Kratochvil  <jan.kratochvil at redhat.com>
+
+	PR gdb/16626
+	* auto-load.c (auto_load_objfile_script_1): Change filename to
+	debugfile.
+
+2014-02-09  Jan Kratochvil  <jan.kratochvil at redhat.com>
+
+	Fix Python stack corruption.
+	* python/py-linetable.c (ltpy_get_pcs_for_line, ltpy_has_line): Use
+	gdb_py_longest.
+
+2014-02-06  Joel Brobecker  <brobecker at adacore.com>
+
+	* version.in: Set GDB version number to 7.7.0.DATE-cvs.
+
+2014-02-06  Joel Brobecker  <brobecker at adacore.com>
+
+	GDB 7.7 released.
+
 2014-02-06  Joel Brobecker  <brobecker at adacore.com>
 
 	* version.in: Set GDB version number to 7.7.
diff --git a/gdb/MAINTAINERS b/gdb/MAINTAINERS
index ffd310b..c0297c1 100644
--- a/gdb/MAINTAINERS
+++ b/gdb/MAINTAINERS
@@ -546,6 +546,7 @@ Jim Kingdon					kingdon at panix.com
 Paul Koning					paul_koning at dell.com
 Jan Kratochvil					jan.kratochvil at redhat.com
 Maxim Kuvyrkov					maxim at kugelworks.com
+Pierre Langlois 				pierre.langlois at embecosm.com
 Jonathan Larmour				jifl at ecoscentric.com
 Jeff Law					law at redhat.com
 Justin Lebar					justin.lebar at gmail.com
diff --git a/gdb/auto-load.c b/gdb/auto-load.c
index fd612b2..62a7de4 100644
--- a/gdb/auto-load.c
+++ b/gdb/auto-load.c
@@ -791,17 +791,17 @@ auto_load_objfile_script_1 (struct objfile *objfile, const char *realname,
       make_cleanup_fclose (input);
 
       is_safe
-	= file_is_auto_load_safe (filename,
+	= file_is_auto_load_safe (debugfile,
 				  _("auto-load: Loading %s script \"%s\""
 				    " by extension for objfile \"%s\".\n"),
-				  language->name, filename,
+				  language->name, debugfile,
 				  objfile_name (objfile));
 
       /* Add this script to the hash table too so
 	 "info auto-load ${lang}-scripts" can print it.  */
       pspace_info
 	= get_auto_load_pspace_data_for_loading (current_program_space);
-      maybe_add_script (pspace_info, is_safe, filename, filename, language);
+      maybe_add_script (pspace_info, is_safe, debugfile, debugfile, language);
 
       /* To preserve existing behaviour we don't check for whether the
 	 script was already in the table, and always load it.
diff --git a/gdb/avr-tdep.c b/gdb/avr-tdep.c
index cb330ea..1be9e7d 100644
--- a/gdb/avr-tdep.c
+++ b/gdb/avr-tdep.c
@@ -179,7 +179,7 @@ struct avr_unwind_cache
 struct gdbarch_tdep
 {
   /* Number of bytes stored to the stack by call instructions.
-     2 bytes for avr1-5, 3 bytes for avr6.  */
+     2 bytes for avr1-5 and avrxmega1-5, 3 bytes for avr6 and avrxmega6-7.  */
   int call_length;
 
   /* Type for void.  */
@@ -719,7 +719,7 @@ avr_scan_prologue (struct gdbarch *gdbarch, CORE_ADDR pc_beg, CORE_ADDR pc_end,
           info->size += gdbarch_tdep (gdbarch)->call_length;
           vpc += 2;
         }
-      else if (insn == 0x920f)  /* push r0 */
+      else if (insn == 0x920f || insn == 0x921f)  /* push r0 or push r1 */
         {
           info->size += 1;
           vpc += 2;
@@ -1355,14 +1355,21 @@ avr_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
   switch (info.bfd_arch_info->mach)
     {
     case bfd_mach_avr1:
+    case bfd_mach_avrxmega1:
     case bfd_mach_avr2:
+    case bfd_mach_avrxmega2:
     case bfd_mach_avr3:
+    case bfd_mach_avrxmega3:
     case bfd_mach_avr4:
+    case bfd_mach_avrxmega4:
     case bfd_mach_avr5:
+    case bfd_mach_avrxmega5:
     default:
       call_length = 2;
       break;
     case bfd_mach_avr6:
+    case bfd_mach_avrxmega6:
+    case bfd_mach_avrxmega7:
       call_length = 3;
       break;
     }
diff --git a/gdb/dcache.c b/gdb/dcache.c
index ea51f5b..87da3c4 100644
--- a/gdb/dcache.c
+++ b/gdb/dcache.c
@@ -413,24 +413,20 @@ dcache_peek_byte (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr)
 
 /* Write the byte at PTR into ADDR in the data cache.
 
-   The caller is responsible for also promptly writing the data
-   through to target memory.
+   The caller should have written the data through to target memory
+   already.
 
-   If addr is not in cache, this function does nothing; writing to
-   an area of memory which wasn't present in the cache doesn't cause
-   it to be loaded in.
+   If ADDR is not in cache, this function does nothing; writing to an
+   area of memory which wasn't present in the cache doesn't cause it
+   to be loaded in.  */
 
-   Always return 1 (meaning success) to simplify dcache_xfer_memory.  */
-
-static int
-dcache_poke_byte (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr)
+static void
+dcache_poke_byte (DCACHE *dcache, CORE_ADDR addr, const gdb_byte *ptr)
 {
   struct dcache_block *db = dcache_hit (dcache, addr);
 
   if (db)
     db->data[XFORM (dcache, addr)] = *ptr;
-
-  return 1;
 }
 
 static int
@@ -467,26 +463,16 @@ dcache_init (void)
 }
 
 
-/* Read or write LEN bytes from inferior memory at MEMADDR, transferring
-   to or from debugger address MYADDR.  Write to inferior if SHOULD_WRITE is
-   nonzero. 
-
-   Return the number of bytes actually transfered, or -1 if the
-   transfer is not supported or otherwise fails.  Return of a non-negative
-   value less than LEN indicates that no further transfer is possible.
-   NOTE: This is different than the to_xfer_partial interface, in which
-   positive values less than LEN mean further transfers may be possible.  */
+/* Read LEN bytes from dcache memory at MEMADDR, transferring to
+   debugger address MYADDR.  If the data is presently cached, this
+   fills the cache.  Arguments/return are like the target_xfer_partial
+   interface.  */
 
 int
-dcache_xfer_memory (struct target_ops *ops, DCACHE *dcache,
-		    CORE_ADDR memaddr, gdb_byte *myaddr,
-		    int len, int should_write)
+dcache_read_memory_partial (struct target_ops *ops, DCACHE *dcache,
+			    CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len)
 {
-  int i;
-  int res;
-  int (*xfunc) (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr);
-
-  xfunc = should_write ? dcache_poke_byte : dcache_peek_byte;
+  ULONGEST i;
 
   /* If this is a different inferior from what we've recorded,
      flush the cache.  */
@@ -497,35 +483,18 @@ dcache_xfer_memory (struct target_ops *ops, DCACHE *dcache,
       dcache->ptid = inferior_ptid;
     }
 
-  /* Do write-through first, so that if it fails, we don't write to
-     the cache at all.  */
-
-  if (should_write)
-    {
-      res = target_write (ops, TARGET_OBJECT_RAW_MEMORY,
-			  NULL, myaddr, memaddr, len);
-      if (res <= 0)
-	return res;
-      /* Update LEN to what was actually written.  */
-      len = res;
-    }
-      
   for (i = 0; i < len; i++)
     {
-      if (!xfunc (dcache, memaddr + i, myaddr + i))
+      if (!dcache_peek_byte (dcache, memaddr + i, myaddr + i))
 	{
 	  /* That failed.  Discard its cache line so we don't have a
 	     partially read line.  */
 	  dcache_invalidate_line (dcache, memaddr + i);
-	  /* If we're writing, we still wrote LEN bytes.  */
-	  if (should_write)
-	    return len;
-	  else
-	    return i;
+	  break;
 	}
     }
-    
-  return len;
+
+  return i == 0 ? -1 : i;
 }
 
 /* FIXME: There would be some benefit to making the cache write-back and
@@ -537,17 +506,26 @@ dcache_xfer_memory (struct target_ops *ops, DCACHE *dcache,
    "logically" connected but not actually a single call to one of the
    memory transfer functions.  */
 
-/* Just update any cache lines which are already present.  This is called
-   by memory_xfer_partial in cases where the access would otherwise not go
-   through the cache.  */
+/* Just update any cache lines which are already present.  This is
+   called by the target_xfer_partial machinery when writing raw
+   memory.  */
 
 void
-dcache_update (DCACHE *dcache, CORE_ADDR memaddr, gdb_byte *myaddr, int len)
+dcache_update (DCACHE *dcache, int status,
+	       CORE_ADDR memaddr, const gdb_byte *myaddr,
+	       ULONGEST len)
 {
-  int i;
+  ULONGEST i;
 
   for (i = 0; i < len; i++)
-    dcache_poke_byte (dcache, memaddr + i, myaddr + i);
+    if (status > 0)
+      dcache_poke_byte (dcache, memaddr + i, myaddr + i);
+    else
+      {
+	/* Discard the whole cache line so we don't have a partially
+	   valid line.  */
+	dcache_invalidate_line (dcache, memaddr + i);
+      }
 }
 
 /* Print DCACHE line INDEX.  */
diff --git a/gdb/dcache.h b/gdb/dcache.h
index 780dc30..c240a18 100644
--- a/gdb/dcache.h
+++ b/gdb/dcache.h
@@ -32,12 +32,12 @@ DCACHE *dcache_init (void);
 /* Free a DCACHE.  */
 void dcache_free (DCACHE *);
 
-/* Simple to call from <remote>_xfer_memory.  */
+int dcache_read_memory_partial (struct target_ops *ops, DCACHE *dcache,
+				CORE_ADDR memaddr, gdb_byte *myaddr,
+				ULONGEST len);
 
-int dcache_xfer_memory (struct target_ops *ops, DCACHE *cache, CORE_ADDR mem,
-			gdb_byte *my, int len, int should_write);
-
-void dcache_update (DCACHE *dcache, CORE_ADDR memaddr, gdb_byte *myaddr,
-		    int len);
+void dcache_update (DCACHE *dcache, int status,
+		    CORE_ADDR memaddr, const gdb_byte *myaddr,
+		    ULONGEST len);
 
 #endif /* DCACHE_H */
diff --git a/gdb/doc/gcore.1 b/gdb/doc/gcore.1
index 21be7d3..1bc3f86 100644
--- a/gdb/doc/gcore.1
+++ b/gdb/doc/gcore.1
@@ -124,7 +124,7 @@
 .\" ========================================================================
 .\"
 .IX Title "GCORE 1"
-.TH GCORE 1 "2014-02-06" "gdb-7.7" "GNU Development Tools"
+.TH GCORE 1 "2014-05-05" "gdb-7.7.1" "GNU Development Tools"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
diff --git a/gdb/doc/gdb.1 b/gdb/doc/gdb.1
index 3b2cd0d..ddcf5b0 100644
--- a/gdb/doc/gdb.1
+++ b/gdb/doc/gdb.1
@@ -124,7 +124,7 @@
 .\" ========================================================================
 .\"
 .IX Title "GDB 1"
-.TH GDB 1 "2014-02-06" "gdb-7.7" "GNU Development Tools"
+.TH GDB 1 "2014-05-05" "gdb-7.7.1" "GNU Development Tools"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
diff --git a/gdb/doc/gdb.info b/gdb/doc/gdb.info
index 0d9c944..d26dbf4 100644
--- a/gdb/doc/gdb.info
+++ b/gdb/doc/gdb.info
@@ -21,648 +21,648 @@ END-INFO-DIR-ENTRY
 
 Indirect:
 gdb.info-1: 899
-gdb.info-2: 305459
-gdb.info-3: 616091
-gdb.info-4: 902010
-gdb.info-5: 1201597
-gdb.info-6: 1512256
+gdb.info-2: 305465
+gdb.info-3: 616097
+gdb.info-4: 902016
+gdb.info-5: 1201603
+gdb.info-6: 1512320
 
 Tag Table:
 (Indirect)
-Node: Top1700
-Node: Summary5156
-Node: Free Software7017
-Node: Free Documentation7757
-Node: Contributors12691
-Node: Sample Session20789
-Node: Invocation27625
-Node: Invoking GDB28168
-Node: File Options30480
-Node: Mode Options33537
-Ref: -nx33764
-Ref: -nh34848
-Node: Startup41151
-Ref: Home Directory Init File41702
-Ref: Option -init-eval-command41812
-Ref: Init File in the Current Directory during Startup42152
-Ref: Startup-Footnote-144348
-Node: Quitting GDB44457
-Node: Shell Commands45354
-Node: Logging Output46281
-Node: Commands47118
-Node: Command Syntax47756
-Node: Completion49922
-Ref: Completion-Footnote-155286
-Node: Help55446
-Node: Running61197
-Node: Compilation62426
-Node: Starting64510
-Node: Arguments74632
-Node: Environment75901
-Node: Working Directory79277
-Node: Input/Output80429
-Node: Attach82400
-Node: Kill Process84866
-Node: Inferiors and Programs85847
-Node: Threads93089
-Ref: set libthread-db-search-path100493
-Node: Forks102547
-Node: Checkpoint/Restart108861
-Ref: Checkpoint/Restart-Footnote-1113389
-Node: Stopping113424
-Node: Breakpoints114687
-Node: Set Breaks118226
-Node: Set Watchpoints136944
-Node: Set Catchpoints146348
-Node: Delete Breaks157218
-Node: Disabling159158
-Node: Conditions162543
-Node: Break Commands168190
-Node: Dynamic Printf171411
-Node: Save Breakpoints175670
-Node: Static Probe Points176845
-Node: Error in Breakpoints179532
-Node: Breakpoint-related Warnings180268
-Node: Continuing and Stepping182595
-Ref: range stepping191970
-Node: Skipping Over Functions and Files193050
-Node: Signals196622
-Ref: extra signal information201052
-Node: Thread Stops202556
-Node: All-Stop Mode203655
-Node: Non-Stop Mode207555
-Node: Background Execution211028
-Node: Thread-Specific Breakpoints213592
-Node: Interrupted System Calls215596
-Node: Observer Mode217110
-Node: Reverse Execution220546
-Ref: Reverse Execution-Footnote-1225171
-Ref: Reverse Execution-Footnote-2225798
-Node: Process Record and Replay225848
-Node: Stack238813
-Node: Frames240361
-Node: Backtrace243113
-Ref: backtrace-command243464
-Ref: Backtrace-Footnote-1249234
-Node: Frame Filter Management249422
-Ref: disable frame-filter all249966
-Node: Selection254266
-Node: Frame Info257144
-Node: Source259131
-Node: List260197
-Node: Specify Location262899
-Node: Edit267503
-Ref: Edit-Footnote-1268979
-Node: Search269214
-Node: Source Path270022
-Ref: set substitute-path276388
-Node: Machine Code278608
-Node: Data285509
-Node: Expressions293173
-Node: Ambiguous Expressions295264
-Node: Variables298494
-Node: Arrays305459
-Node: Output Formats307990
-Ref: Output Formats-Footnote-1311363
-Node: Memory311520
-Node: Auto Display317672
-Node: Print Settings322214
-Ref: set print entry-values330376
-Node: Pretty Printing341690
-Node: Pretty-Printer Introduction342204
-Node: Pretty-Printer Example343959
-Node: Pretty-Printer Commands344737
-Node: Value History347161
-Node: Convenience Vars349583
-Node: Convenience Funs356065
-Node: Registers358936
-Ref: Registers-Footnote-1364865
-Node: Floating Point Hardware365260
-Node: Vector Unit365792
-Node: OS Information366179
-Ref: linux info os infotypes368203
-Node: Memory Region Attributes372410
-Node: Dump/Restore Files377074
-Node: Core File Generation379379
-Node: Character Sets380603
-Node: Caching Target Data386968
-Ref: Caching Target Data-Footnote-1389696
-Node: Searching Memory389934
-Node: Optimized Code392812
-Node: Inline Functions394489
-Node: Tail Call Frames397116
-Ref: set debug entry-values399256
-Node: Macros403330
-Ref: Macros-Footnote-1410906
-Node: Tracepoints411059
-Node: Set Tracepoints413121
-Node: Create and Delete Tracepoints416059
-Node: Enable and Disable Tracepoints422460
-Node: Tracepoint Passcounts423700
-Node: Tracepoint Conditions425111
-Node: Trace State Variables426805
-Node: Tracepoint Actions428996
-Node: Listing Tracepoints435299
-Node: Listing Static Tracepoint Markers437001
-Node: Starting and Stopping Trace Experiments438849
-Ref: disconnected tracing440594
-Node: Tracepoint Restrictions445014
-Node: Analyze Collected Data448783
-Node: tfind450089
-Node: tdump454511
-Node: save tracepoints457026
-Node: Tracepoint Variables457522
-Node: Trace Files458650
-Node: Overlays461020
-Node: How Overlays Work461740
-Ref: A code overlay464295
-Node: Overlay Commands467708
-Node: Automatic Overlay Debugging471890
-Node: Overlay Sample Program474029
-Node: Languages475766
-Node: Setting476929
-Node: Filenames478630
-Node: Manually479441
-Node: Automatically480650
-Node: Show481711
-Ref: show language481999
-Node: Checks483033
-Node: Type Checking484038
-Node: Range Checking485867
-Node: Supported Languages488268
-Node: C489568
-Node: C Operators490532
-Node: C Constants494845
-Node: C Plus Plus Expressions497724
-Node: C Defaults501067
-Node: C Checks501735
-Node: Debugging C502295
-Node: Debugging C Plus Plus502779
-Node: Decimal Floating Point506253
-Node: D507523
-Node: Go507781
-Node: Objective-C508875
-Node: Method Names in Commands509338
-Node: The Print Command with Objective-C511029
-Node: OpenCL C511680
-Node: OpenCL C Datatypes511955
-Node: OpenCL C Expressions512330
-Node: OpenCL C Operators512687
-Node: Fortran512919
-Node: Fortran Operators513640
-Node: Fortran Defaults514496
-Node: Special Fortran Commands514881
-Node: Pascal515387
-Node: Modula-2515902
-Node: M2 Operators516877
-Node: Built-In Func/Proc519875
-Node: M2 Constants522735
-Node: M2 Types524336
-Node: M2 Defaults527554
-Node: Deviations528155
-Node: M2 Checks529256
-Node: M2 Scope530073
-Node: GDB/M2531097
-Node: Ada532010
-Node: Ada Mode Intro533120
-Node: Omissions from Ada535031
-Node: Additions to Ada539384
-Node: Stopping Before Main Program543311
-Node: Ada Exceptions543845
-Node: Ada Tasks545042
-Node: Ada Tasks and Core Files551446
-Node: Ravenscar Profile552364
-Node: Ada Glitches553433
-Node: Unsupported Languages556221
-Node: Symbols556911
-Node: Altering574252
-Node: Assignment575221
-Node: Jumping578327
-Node: Signaling580489
-Node: Returning581622
-Node: Calling584973
-Node: Patching588000
-Node: GDB Files589077
-Node: Files589797
-Ref: Shared Libraries603387
-Ref: Files-Footnote-1615017
-Node: Separate Debug Files616091
-Ref: debug-file-directory619195
-Node: MiniDebugInfo627840
-Node: Index Files630291
-Node: Symbol Errors632353
-Node: Data Files635969
-Node: Targets636925
-Node: Active Targets638405
-Node: Target Commands639479
-Ref: load643605
-Node: Byte Order644586
-Node: Remote Debugging645560
-Node: Connecting646822
-Node: File Transfer651757
-Node: Server652696
-Ref: Monitor Commands for gdbserver662917
-Ref: Server-Footnote-1667574
-Node: Remote Configuration667694
-Ref: set remotebreak668720
-Ref: set remote hardware-watchpoint-limit670183
-Ref: set remote hardware-breakpoint-limit670183
-Ref: set remote hardware-watchpoint-length-limit670409
-Ref: set remote exec-file670824
-Node: Remote Stub680313
-Node: Stub Contents683208
-Node: Bootstrapping685315
-Node: Debug Session689125
-Node: Configurations691166
-Node: Native691935
-Node: HP-UX692504
-Node: BSD libkvm Interface692793
-Node: SVR4 Process Information693864
-Node: DJGPP Native697668
-Node: Cygwin Native704227
-Node: Non-debug DLL Symbols708174
-Node: Hurd Native712730
-Node: Darwin717986
-Node: Embedded OS719247
-Node: VxWorks719723
-Node: VxWorks Connection721937
-Node: VxWorks Download722871
-Node: VxWorks Attach724606
-Node: Embedded Processors725003
-Node: ARM726136
-Node: M32R/D730259
-Node: M68K731961
-Node: MicroBlaze732253
-Node: MIPS Embedded733702
-Node: PowerPC Embedded738639
-Node: PA742405
-Node: Sparclet742688
-Node: Sparclet File744157
-Node: Sparclet Connection745037
-Node: Sparclet Download745515
-Node: Sparclet Execution746563
-Node: Sparclite747154
-Node: Z8000747526
-Node: AVR748908
-Node: CRIS749271
-Node: Super-H750249
-Node: Architectures751308
-Node: AArch64751745
-Node: i386752151
-Ref: i386-Footnote-1754383
-Node: Alpha754469
-Node: MIPS754602
-Node: HPPA758496
-Node: SPU759014
-Node: PowerPC761200
-Node: Nios II761935
-Node: Controlling GDB762324
-Node: Prompt763220
-Node: Editing764938
-Node: Command History765881
-Node: Screen Size769412
-Node: Numbers771346
-Node: ABI773317
-Node: Auto-loading776490
-Ref: set auto-load off777865
-Ref: show auto-load778501
-Ref: info auto-load779280
-Node: Init File in the Current Directory781949
-Ref: set auto-load local-gdbinit782524
-Ref: show auto-load local-gdbinit782706
-Ref: info auto-load local-gdbinit782870
-Node: libthread_db.so.1 file783018
-Ref: set auto-load libthread-db783957
-Ref: show auto-load libthread-db784088
-Ref: info auto-load libthread-db784225
-Node: Auto-loading safe path784409
-Ref: set auto-load safe-path785715
-Ref: show auto-load safe-path786454
-Ref: add-auto-load-safe-path786577
-Node: Auto-loading verbose mode789471
-Ref: set debug auto-load790634
-Ref: show debug auto-load790735
-Node: Messages/Warnings790857
-Ref: confirmation requests792291
-Node: Debugging Output793495
-Node: Other Misc Settings801972
-Node: Extending GDB802996
-Node: Sequences804719
-Node: Define805380
-Node: Hooks809178
-Node: Command Files811543
-Node: Output816616
-Node: Auto-loading sequences821580
-Ref: set auto-load gdb-scripts822075
-Ref: show auto-load gdb-scripts822199
-Ref: info auto-load gdb-scripts822329
-Node: Python822560
-Node: Python Commands823751
-Node: Python API826079
-Node: Basic Python828386
-Ref: prompt_hook836986
-Node: Exception Handling837584
-Node: Values From Inferior840080
-Node: Types In Python852078
-Node: Pretty Printing API861300
-Node: Selecting Pretty-Printers865196
-Node: Writing a Pretty-Printer867529
-Node: Type Printing API872851
-Node: Frame Filter API875449
-Node: Frame Decorator API882730
-Ref: frame_args886314
-Node: Writing a Frame Filter889644
-Node: Inferiors In Python902010
-Node: Events In Python904894
-Node: Threads In Python910073
-Node: Commands In Python912513
-Node: Parameters In Python921919
-Node: Functions In Python927379
-Node: Progspaces In Python929596
-Node: Objfiles In Python931280
-Node: Frames In Python933539
-Node: Blocks In Python939706
-Node: Symbols In Python944068
-Node: Symbol Tables In Python951276
-Node: Line Tables In Python954201
-Node: Breakpoints In Python957038
-Node: Finish Breakpoints in Python964952
-Node: Lazy Strings In Python967058
-Node: Architectures In Python969292
-Node: Python Auto-loading971481
-Ref: set auto-load python-scripts972110
-Ref: show auto-load python-scripts972210
-Ref: info auto-load python-scripts972316
-Node: Python modules973341
-Node: gdb.printing973727
-Node: gdb.types975141
-Node: gdb.prompt978166
-Node: Auto-loading extensions979815
-Node: objfile-gdbdotext file980993
-Ref: set auto-load scripts-directory982400
-Ref: with-auto-load-dir982776
-Ref: show auto-load scripts-directory983594
-Node: dotdebug_gdb_scripts section983924
-Node: Which flavor to choose?985716
-Node: Aliases987537
-Node: Interpreters990397
-Node: TUI992495
-Node: TUI Overview993439
-Node: TUI Keys995872
-Node: TUI Single Key Mode998176
-Node: TUI Commands999051
-Node: TUI Configuration1001435
-Node: Emacs1002741
-Node: GDB/MI1008178
-Node: GDB/MI General Design1010152
-Node: Context management1012672
-Node: Asynchronous and non-stop modes1016500
-Node: Thread groups1018491
-Node: GDB/MI Command Syntax1020769
-Node: GDB/MI Input Syntax1021012
-Node: GDB/MI Output Syntax1022562
-Node: GDB/MI Compatibility with CLI1026132
-Node: GDB/MI Development and Front Ends1026869
-Node: GDB/MI Output Records1028523
-Node: GDB/MI Result Records1028929
-Node: GDB/MI Stream Records1030279
-Node: GDB/MI Async Records1031544
-Node: GDB/MI Breakpoint Information1041159
-Node: GDB/MI Frame Information1045110
-Node: GDB/MI Thread Information1046196
-Node: GDB/MI Ada Exception Information1047176
-Node: GDB/MI Simple Examples1047599
-Node: GDB/MI Command Description Format1049807
-Node: GDB/MI Breakpoint Commands1050687
-Node: GDB/MI Catchpoint Commands1070533
-Node: Shared Library GDB/MI Catchpoint Commands1070901
-Node: Ada Exception GDB/MI Catchpoint Commands1072559
-Node: GDB/MI Program Context1074963
-Node: GDB/MI Thread Commands1079231
-Node: GDB/MI Ada Tasking Commands1083187
-Node: GDB/MI Program Execution1085440
-Node: GDB/MI Stack Manipulation1097474
-Ref: -stack-list-arguments1099373
-Ref: -stack-list-frames1103078
-Ref: -stack-list-locals1106941
-Ref: -stack-list-variables1108431
-Node: GDB/MI Variable Objects1109965
-Ref: -var-set-format1119923
-Ref: -var-list-children1121041
-Ref: -var-update1129833
-Ref: -var-set-frozen1132831
-Ref: -var-set-update-range1133628
-Ref: -var-set-visualizer1134157
-Node: GDB/MI Data Manipulation1135647
-Node: GDB/MI Tracepoint Commands1155185
-Node: GDB/MI Symbol Query1166770
-Node: GDB/MI File Commands1167459
-Node: GDB/MI Target Manipulation1170754
-Node: GDB/MI File Transfer Commands1176969
-Node: GDB/MI Ada Exceptions Commands1178292
-Node: GDB/MI Support Commands1179645
-Node: GDB/MI Miscellaneous Commands1184218
-Ref: -interpreter-exec1194242
-Node: Annotations1196582
-Node: Annotations Overview1197501
-Node: Server Prefix1199964
-Node: Prompting1201597
-Node: Errors1203114
-Node: Invalidation1204010
-Node: Annotations for Running1204489
-Node: Source Annotations1206009
-Node: JIT Interface1206934
-Node: Declarations1208733
-Node: Registering Code1210120
-Node: Unregistering Code1211092
-Node: Custom Debug Info1211719
-Node: Using JIT Debug Info Readers1213015
-Node: Writing JIT Debug Info Readers1214029
-Node: In-Process Agent1216224
-Ref: Control Agent1218167
-Node: In-Process Agent Protocol1219034
-Node: IPA Protocol Objects1219825
-Ref: agent expression object1220823
-Ref: tracepoint action object1221028
-Ref: tracepoint object1221108
-Node: IPA Protocol Commands1223684
-Node: GDB Bugs1225136
-Node: Bug Criteria1225868
-Node: Bug Reporting1226745
-Node: Command Line Editing1234574
-Node: Introduction and Notation1235226
-Node: Readline Interaction1236847
-Node: Readline Bare Essentials1238036
-Node: Readline Movement Commands1239817
-Node: Readline Killing Commands1240775
-Node: Readline Arguments1242691
-Node: Searching1243733
-Node: Readline Init File1245883
-Node: Readline Init File Syntax1247034
-Node: Conditional Init Constructs1262133
-Node: Sample Init File1264656
-Node: Bindable Readline Commands1267770
-Node: Commands For Moving1268822
-Node: Commands For History1269680
-Node: Commands For Text1273075
-Node: Commands For Killing1275798
-Node: Numeric Arguments1277938
-Node: Commands For Completion1279074
-Node: Keyboard Macros1281040
-Node: Miscellaneous Commands1281608
-Node: Readline vi Mode1285456
-Node: Using History Interactively1286366
-Node: History Interaction1286881
-Node: Event Designators1288303
-Node: Word Designators1289440
-Node: Modifiers1291075
-Node: In Memoriam1292296
-Node: Formatting Documentation1293179
-Ref: Formatting Documentation-Footnote-11296491
-Node: Installing GDB1296555
-Node: Requirements1297127
-Ref: Expat1297696
-Node: Running Configure1300263
-Node: Separate Objdir1303802
-Node: Config Names1306685
-Node: Configure Options1308130
-Node: System-wide configuration1310501
-Node: System-wide Configuration Scripts1312461
-Node: Maintenance Commands1313645
-Ref: maint info breakpoints1315300
-Node: Remote Protocol1331227
-Node: Overview1331881
-Ref: Binary Data1334426
-Node: Packets1336951
-Ref: thread-id syntax1337851
-Ref: extended mode1339296
-Ref: bc1341020
-Ref: bs1341230
-Ref: read registers packet1342835
-Ref: cycle step packet1344768
-Ref: write register packet1346645
-Ref: step with signal packet1347642
-Ref: vCont packet1349098
-Ref: X packet1354910
-Ref: insert breakpoint or watchpoint packet1355197
-Node: Stop Reply Packets1359239
-Node: General Query Packets1363983
-Ref: QNonStop1374207
-Ref: QPassSignals1374834
-Ref: QProgramSignals1376006
-Ref: qSearch memory1378486
-Ref: QStartNoAckMode1378985
-Ref: qSupported1379516
-Ref: multiprocess extensions1392214
-Ref: install tracepoint in tracing1394244
-Ref: qXfer read1397604
-Ref: qXfer auxiliary vector read1398099
-Ref: qXfer btrace read1398447
-Ref: qXfer target description read1399070
-Ref: qXfer library list read1399504
-Ref: qXfer svr4 library list read1400160
-Ref: qXfer memory map read1402013
-Ref: qXfer sdata read1402400
-Ref: qXfer siginfo read1402866
-Ref: qXfer spu read1403263
-Ref: qXfer threads read1403787
-Ref: qXfer traceframe info read1404190
-Ref: qXfer unwind info block1404608
-Ref: qXfer fdpic loadmap read1404842
-Ref: qXfer osdata read1405258
-Ref: qXfer write1406465
-Ref: qXfer siginfo write1407018
-Ref: qXfer spu write1407415
-Ref: General Query Packets-Footnote-11409948
-Node: Architecture-Specific Protocol Details1410275
-Node: ARM-Specific Protocol Details1410784
-Node: ARM Breakpoint Kinds1411032
-Node: MIPS-Specific Protocol Details1411363
-Node: MIPS Register packet Format1411646
-Node: MIPS Breakpoint Kinds1412573
-Node: Tracepoint Packets1412991
-Ref: QTEnable1421986
-Ref: QTDisable1422182
-Ref: qTfSTM1427721
-Ref: qTsSTM1427721
-Ref: qTSTMat1428760
-Ref: QTBuffer-size1429907
-Node: Host I/O Packets1431876
-Node: Interrupts1436486
-Node: Notification Packets1438389
-Node: Remote Non-Stop1443798
-Node: Packet Acknowledgment1446088
-Node: Examples1448203
-Node: File-I/O Remote Protocol Extension1448797
-Node: File-I/O Overview1449259
-Node: Protocol Basics1451458
-Node: The F Request Packet1453687
-Node: The F Reply Packet1454588
-Node: The Ctrl-C Message1455506
-Node: Console I/O1457132
-Node: List of Supported Calls1458348
-Node: open1458710
-Node: close1461218
-Node: read1461601
-Node: write1462210
-Node: lseek1462981
-Node: rename1463865
-Node: unlink1465272
-Node: stat/fstat1466219
-Node: gettimeofday1467112
-Node: isatty1467548
-Node: system1468144
-Node: Protocol-specific Representation of Datatypes1469686
-Node: Integral Datatypes1470063
-Node: Pointer Values1470870
-Node: Memory Transfer1471574
-Node: struct stat1472194
-Node: struct timeval1474396
-Node: Constants1474913
-Node: Open Flags1475362
-Node: mode_t Values1475703
-Node: Errno Values1476195
-Node: Lseek Flags1477005
-Node: Limits1477190
-Node: File-I/O Examples1477550
-Node: Library List Format1478638
-Node: Library List Format for SVR4 Targets1481420
-Node: Memory Map Format1483887
-Node: Thread List Format1486462
-Node: Traceframe Info Format1487280
-Node: Branch Trace Format1488966
-Node: Agent Expressions1490311
-Node: General Bytecode Design1493132
-Node: Bytecode Descriptions1497926
-Node: Using Agent Expressions1512256
-Node: Varying Target Capabilities1514233
-Node: Rationale1515394
-Node: Target Descriptions1522783
-Node: Retrieving Descriptions1524657
-Node: Target Description Format1525742
-Node: Predefined Target Types1534790
-Node: Standard Target Features1536174
-Node: AArch64 Features1538038
-Node: ARM Features1538461
-Node: i386 Features1539979
-Node: MIPS Features1541336
-Node: M68K Features1542521
-Node: Nios II Features1543184
-Node: PowerPC Features1543582
-Node: S/390 and System z Features1544905
-Node: TIC6x Features1546370
-Node: Operating System Information1546930
-Node: Process list1547765
-Node: Trace File Format1548828
-Node: Index Section Format1550821
-Node: Man Pages1558791
-Node: gdb man1559197
-Node: gdbserver man1565233
-Node: gcore man1572238
-Node: gdbinit man1572895
-Node: Copying1573778
-Node: GNU Free Documentation License1611338
-Node: Concept Index1636484
-Node: Command and Variable Index1759495
+Node: Top1702
+Node: Summary5160
+Node: Free Software7021
+Node: Free Documentation7761
+Node: Contributors12695
+Node: Sample Session20793
+Node: Invocation27631
+Node: Invoking GDB28174
+Node: File Options30486
+Node: Mode Options33543
+Ref: -nx33770
+Ref: -nh34854
+Node: Startup41157
+Ref: Home Directory Init File41708
+Ref: Option -init-eval-command41818
+Ref: Init File in the Current Directory during Startup42158
+Ref: Startup-Footnote-144354
+Node: Quitting GDB44463
+Node: Shell Commands45360
+Node: Logging Output46287
+Node: Commands47124
+Node: Command Syntax47762
+Node: Completion49928
+Ref: Completion-Footnote-155292
+Node: Help55452
+Node: Running61203
+Node: Compilation62432
+Node: Starting64516
+Node: Arguments74638
+Node: Environment75907
+Node: Working Directory79283
+Node: Input/Output80435
+Node: Attach82406
+Node: Kill Process84872
+Node: Inferiors and Programs85853
+Node: Threads93095
+Ref: set libthread-db-search-path100499
+Node: Forks102553
+Node: Checkpoint/Restart108867
+Ref: Checkpoint/Restart-Footnote-1113395
+Node: Stopping113430
+Node: Breakpoints114693
+Node: Set Breaks118232
+Node: Set Watchpoints136950
+Node: Set Catchpoints146354
+Node: Delete Breaks157224
+Node: Disabling159164
+Node: Conditions162549
+Node: Break Commands168196
+Node: Dynamic Printf171417
+Node: Save Breakpoints175676
+Node: Static Probe Points176851
+Node: Error in Breakpoints179538
+Node: Breakpoint-related Warnings180274
+Node: Continuing and Stepping182601
+Ref: range stepping191976
+Node: Skipping Over Functions and Files193056
+Node: Signals196628
+Ref: extra signal information201058
+Node: Thread Stops202562
+Node: All-Stop Mode203661
+Node: Non-Stop Mode207561
+Node: Background Execution211034
+Node: Thread-Specific Breakpoints213598
+Node: Interrupted System Calls215602
+Node: Observer Mode217116
+Node: Reverse Execution220552
+Ref: Reverse Execution-Footnote-1225177
+Ref: Reverse Execution-Footnote-2225804
+Node: Process Record and Replay225854
+Node: Stack238819
+Node: Frames240367
+Node: Backtrace243119
+Ref: backtrace-command243470
+Ref: Backtrace-Footnote-1249240
+Node: Frame Filter Management249428
+Ref: disable frame-filter all249972
+Node: Selection254272
+Node: Frame Info257150
+Node: Source259137
+Node: List260203
+Node: Specify Location262905
+Node: Edit267509
+Ref: Edit-Footnote-1268985
+Node: Search269220
+Node: Source Path270028
+Ref: set substitute-path276394
+Node: Machine Code278614
+Node: Data285515
+Node: Expressions293179
+Node: Ambiguous Expressions295270
+Node: Variables298500
+Node: Arrays305465
+Node: Output Formats307996
+Ref: Output Formats-Footnote-1311369
+Node: Memory311526
+Node: Auto Display317678
+Node: Print Settings322220
+Ref: set print entry-values330382
+Node: Pretty Printing341696
+Node: Pretty-Printer Introduction342210
+Node: Pretty-Printer Example343965
+Node: Pretty-Printer Commands344743
+Node: Value History347167
+Node: Convenience Vars349589
+Node: Convenience Funs356071
+Node: Registers358942
+Ref: Registers-Footnote-1364871
+Node: Floating Point Hardware365266
+Node: Vector Unit365798
+Node: OS Information366185
+Ref: linux info os infotypes368209
+Node: Memory Region Attributes372416
+Node: Dump/Restore Files377080
+Node: Core File Generation379385
+Node: Character Sets380609
+Node: Caching Target Data386974
+Ref: Caching Target Data-Footnote-1389702
+Node: Searching Memory389940
+Node: Optimized Code392818
+Node: Inline Functions394495
+Node: Tail Call Frames397122
+Ref: set debug entry-values399262
+Node: Macros403336
+Ref: Macros-Footnote-1410912
+Node: Tracepoints411065
+Node: Set Tracepoints413127
+Node: Create and Delete Tracepoints416065
+Node: Enable and Disable Tracepoints422466
+Node: Tracepoint Passcounts423706
+Node: Tracepoint Conditions425117
+Node: Trace State Variables426811
+Node: Tracepoint Actions429002
+Node: Listing Tracepoints435305
+Node: Listing Static Tracepoint Markers437007
+Node: Starting and Stopping Trace Experiments438855
+Ref: disconnected tracing440600
+Node: Tracepoint Restrictions445020
+Node: Analyze Collected Data448789
+Node: tfind450095
+Node: tdump454517
+Node: save tracepoints457032
+Node: Tracepoint Variables457528
+Node: Trace Files458656
+Node: Overlays461026
+Node: How Overlays Work461746
+Ref: A code overlay464301
+Node: Overlay Commands467714
+Node: Automatic Overlay Debugging471896
+Node: Overlay Sample Program474035
+Node: Languages475772
+Node: Setting476935
+Node: Filenames478636
+Node: Manually479447
+Node: Automatically480656
+Node: Show481717
+Ref: show language482005
+Node: Checks483039
+Node: Type Checking484044
+Node: Range Checking485873
+Node: Supported Languages488274
+Node: C489574
+Node: C Operators490538
+Node: C Constants494851
+Node: C Plus Plus Expressions497730
+Node: C Defaults501073
+Node: C Checks501741
+Node: Debugging C502301
+Node: Debugging C Plus Plus502785
+Node: Decimal Floating Point506259
+Node: D507529
+Node: Go507787
+Node: Objective-C508881
+Node: Method Names in Commands509344
+Node: The Print Command with Objective-C511035
+Node: OpenCL C511686
+Node: OpenCL C Datatypes511961
+Node: OpenCL C Expressions512336
+Node: OpenCL C Operators512693
+Node: Fortran512925
+Node: Fortran Operators513646
+Node: Fortran Defaults514502
+Node: Special Fortran Commands514887
+Node: Pascal515393
+Node: Modula-2515908
+Node: M2 Operators516883
+Node: Built-In Func/Proc519881
+Node: M2 Constants522741
+Node: M2 Types524342
+Node: M2 Defaults527560
+Node: Deviations528161
+Node: M2 Checks529262
+Node: M2 Scope530079
+Node: GDB/M2531103
+Node: Ada532016
+Node: Ada Mode Intro533126
+Node: Omissions from Ada535037
+Node: Additions to Ada539390
+Node: Stopping Before Main Program543317
+Node: Ada Exceptions543851
+Node: Ada Tasks545048
+Node: Ada Tasks and Core Files551452
+Node: Ravenscar Profile552370
+Node: Ada Glitches553439
+Node: Unsupported Languages556227
+Node: Symbols556917
+Node: Altering574258
+Node: Assignment575227
+Node: Jumping578333
+Node: Signaling580495
+Node: Returning581628
+Node: Calling584979
+Node: Patching588006
+Node: GDB Files589083
+Node: Files589803
+Ref: Shared Libraries603393
+Ref: Files-Footnote-1615023
+Node: Separate Debug Files616097
+Ref: debug-file-directory619201
+Node: MiniDebugInfo627846
+Node: Index Files630297
+Node: Symbol Errors632359
+Node: Data Files635975
+Node: Targets636931
+Node: Active Targets638411
+Node: Target Commands639485
+Ref: load643611
+Node: Byte Order644592
+Node: Remote Debugging645566
+Node: Connecting646828
+Node: File Transfer651763
+Node: Server652702
+Ref: Monitor Commands for gdbserver662923
+Ref: Server-Footnote-1667580
+Node: Remote Configuration667700
+Ref: set remotebreak668726
+Ref: set remote hardware-watchpoint-limit670189
+Ref: set remote hardware-breakpoint-limit670189
+Ref: set remote hardware-watchpoint-length-limit670415
+Ref: set remote exec-file670830
+Node: Remote Stub680319
+Node: Stub Contents683214
+Node: Bootstrapping685321
+Node: Debug Session689131
+Node: Configurations691172
+Node: Native691941
+Node: HP-UX692510
+Node: BSD libkvm Interface692799
+Node: SVR4 Process Information693870
+Node: DJGPP Native697674
+Node: Cygwin Native704233
+Node: Non-debug DLL Symbols708180
+Node: Hurd Native712736
+Node: Darwin717992
+Node: Embedded OS719253
+Node: VxWorks719729
+Node: VxWorks Connection721943
+Node: VxWorks Download722877
+Node: VxWorks Attach724612
+Node: Embedded Processors725009
+Node: ARM726142
+Node: M32R/D730265
+Node: M68K731967
+Node: MicroBlaze732259
+Node: MIPS Embedded733708
+Node: PowerPC Embedded738645
+Node: PA742411
+Node: Sparclet742694
+Node: Sparclet File744163
+Node: Sparclet Connection745043
+Node: Sparclet Download745521
+Node: Sparclet Execution746569
+Node: Sparclite747160
+Node: Z8000747532
+Node: AVR748914
+Node: CRIS749277
+Node: Super-H750255
+Node: Architectures751314
+Node: AArch64751751
+Node: i386752157
+Ref: i386-Footnote-1754389
+Node: Alpha754475
+Node: MIPS754608
+Node: HPPA758502
+Node: SPU759020
+Node: PowerPC761206
+Node: Nios II761941
+Node: Controlling GDB762330
+Node: Prompt763226
+Node: Editing764944
+Node: Command History765887
+Node: Screen Size769418
+Node: Numbers771352
+Node: ABI773323
+Node: Auto-loading776496
+Ref: set auto-load off777871
+Ref: show auto-load778507
+Ref: info auto-load779286
+Node: Init File in the Current Directory781955
+Ref: set auto-load local-gdbinit782530
+Ref: show auto-load local-gdbinit782712
+Ref: info auto-load local-gdbinit782876
+Node: libthread_db.so.1 file783024
+Ref: set auto-load libthread-db783963
+Ref: show auto-load libthread-db784094
+Ref: info auto-load libthread-db784231
+Node: Auto-loading safe path784415
+Ref: set auto-load safe-path785721
+Ref: show auto-load safe-path786460
+Ref: add-auto-load-safe-path786583
+Node: Auto-loading verbose mode789477
+Ref: set debug auto-load790640
+Ref: show debug auto-load790741
+Node: Messages/Warnings790863
+Ref: confirmation requests792297
+Node: Debugging Output793501
+Node: Other Misc Settings801978
+Node: Extending GDB803002
+Node: Sequences804725
+Node: Define805386
+Node: Hooks809184
+Node: Command Files811549
+Node: Output816622
+Node: Auto-loading sequences821586
+Ref: set auto-load gdb-scripts822081
+Ref: show auto-load gdb-scripts822205
+Ref: info auto-load gdb-scripts822335
+Node: Python822566
+Node: Python Commands823757
+Node: Python API826085
+Node: Basic Python828392
+Ref: prompt_hook836992
+Node: Exception Handling837590
+Node: Values From Inferior840086
+Node: Types In Python852084
+Node: Pretty Printing API861306
+Node: Selecting Pretty-Printers865202
+Node: Writing a Pretty-Printer867535
+Node: Type Printing API872857
+Node: Frame Filter API875455
+Node: Frame Decorator API882736
+Ref: frame_args886320
+Node: Writing a Frame Filter889650
+Node: Inferiors In Python902016
+Node: Events In Python904900
+Node: Threads In Python910079
+Node: Commands In Python912519
+Node: Parameters In Python921925
+Node: Functions In Python927385
+Node: Progspaces In Python929602
+Node: Objfiles In Python931286
+Node: Frames In Python933545
+Node: Blocks In Python939712
+Node: Symbols In Python944074
+Node: Symbol Tables In Python951282
+Node: Line Tables In Python954207
+Node: Breakpoints In Python957044
+Node: Finish Breakpoints in Python964958
+Node: Lazy Strings In Python967064
+Node: Architectures In Python969298
+Node: Python Auto-loading971487
+Ref: set auto-load python-scripts972116
+Ref: show auto-load python-scripts972216
+Ref: info auto-load python-scripts972322
+Node: Python modules973347
+Node: gdb.printing973733
+Node: gdb.types975147
+Node: gdb.prompt978172
+Node: Auto-loading extensions979821
+Node: objfile-gdbdotext file980999
+Ref: set auto-load scripts-directory982406
+Ref: with-auto-load-dir982782
+Ref: show auto-load scripts-directory983600
+Node: dotdebug_gdb_scripts section983930
+Node: Which flavor to choose?985722
+Node: Aliases987543
+Node: Interpreters990403
+Node: TUI992501
+Node: TUI Overview993445
+Node: TUI Keys995878
+Node: TUI Single Key Mode998182
+Node: TUI Commands999057
+Node: TUI Configuration1001441
+Node: Emacs1002747
+Node: GDB/MI1008184
+Node: GDB/MI General Design1010158
+Node: Context management1012678
+Node: Asynchronous and non-stop modes1016506
+Node: Thread groups1018497
+Node: GDB/MI Command Syntax1020775
+Node: GDB/MI Input Syntax1021018
+Node: GDB/MI Output Syntax1022568
+Node: GDB/MI Compatibility with CLI1026138
+Node: GDB/MI Development and Front Ends1026875
+Node: GDB/MI Output Records1028529
+Node: GDB/MI Result Records1028935
+Node: GDB/MI Stream Records1030285
+Node: GDB/MI Async Records1031550
+Node: GDB/MI Breakpoint Information1041165
+Node: GDB/MI Frame Information1045116
+Node: GDB/MI Thread Information1046202
+Node: GDB/MI Ada Exception Information1047182
+Node: GDB/MI Simple Examples1047605
+Node: GDB/MI Command Description Format1049813
+Node: GDB/MI Breakpoint Commands1050693
+Node: GDB/MI Catchpoint Commands1070539
+Node: Shared Library GDB/MI Catchpoint Commands1070907
+Node: Ada Exception GDB/MI Catchpoint Commands1072565
+Node: GDB/MI Program Context1074969
+Node: GDB/MI Thread Commands1079237
+Node: GDB/MI Ada Tasking Commands1083193
+Node: GDB/MI Program Execution1085446
+Node: GDB/MI Stack Manipulation1097480
+Ref: -stack-list-arguments1099379
+Ref: -stack-list-frames1103084
+Ref: -stack-list-locals1106947
+Ref: -stack-list-variables1108437
+Node: GDB/MI Variable Objects1109971
+Ref: -var-set-format1119929
+Ref: -var-list-children1121047
+Ref: -var-update1129839
+Ref: -var-set-frozen1132837
+Ref: -var-set-update-range1133634
+Ref: -var-set-visualizer1134163
+Node: GDB/MI Data Manipulation1135653
+Node: GDB/MI Tracepoint Commands1155191
+Node: GDB/MI Symbol Query1166776
+Node: GDB/MI File Commands1167465
+Node: GDB/MI Target Manipulation1170760
+Node: GDB/MI File Transfer Commands1176975
+Node: GDB/MI Ada Exceptions Commands1178298
+Node: GDB/MI Support Commands1179651
+Node: GDB/MI Miscellaneous Commands1184224
+Ref: -interpreter-exec1194248
+Node: Annotations1196588
+Node: Annotations Overview1197507
+Node: Server Prefix1199970
+Node: Prompting1201603
+Node: Errors1203120
+Node: Invalidation1204016
+Node: Annotations for Running1204495
+Node: Source Annotations1206015
+Node: JIT Interface1206940
+Node: Declarations1208739
+Node: Registering Code1210126
+Node: Unregistering Code1211098
+Node: Custom Debug Info1211725
+Node: Using JIT Debug Info Readers1213021
+Node: Writing JIT Debug Info Readers1214035
+Node: In-Process Agent1216230
+Ref: Control Agent1218173
+Node: In-Process Agent Protocol1219040
+Node: IPA Protocol Objects1219831
+Ref: agent expression object1220829
+Ref: tracepoint action object1221034
+Ref: tracepoint object1221114
+Node: IPA Protocol Commands1223690
+Node: GDB Bugs1225142
+Node: Bug Criteria1225874
+Node: Bug Reporting1226751
+Node: Command Line Editing1234580
+Node: Introduction and Notation1235232
+Node: Readline Interaction1236853
+Node: Readline Bare Essentials1238042
+Node: Readline Movement Commands1239823
+Node: Readline Killing Commands1240781
+Node: Readline Arguments1242697
+Node: Searching1243739
+Node: Readline Init File1245889
+Node: Readline Init File Syntax1247040
+Node: Conditional Init Constructs1262139
+Node: Sample Init File1264662
+Node: Bindable Readline Commands1267776
+Node: Commands For Moving1268828
+Node: Commands For History1269686
+Node: Commands For Text1273081
+Node: Commands For Killing1275804
+Node: Numeric Arguments1277944
+Node: Commands For Completion1279080
+Node: Keyboard Macros1281046
+Node: Miscellaneous Commands1281614
+Node: Readline vi Mode1285462
+Node: Using History Interactively1286372
+Node: History Interaction1286887
+Node: Event Designators1288309
+Node: Word Designators1289446
+Node: Modifiers1291081
+Node: In Memoriam1292302
+Node: Formatting Documentation1293185
+Ref: Formatting Documentation-Footnote-11296505
+Node: Installing GDB1296573
+Node: Requirements1297145
+Ref: Expat1297714
+Node: Running Configure1300281
+Node: Separate Objdir1303850
+Node: Config Names1306745
+Node: Configure Options1308194
+Node: System-wide configuration1310565
+Node: System-wide Configuration Scripts1312525
+Node: Maintenance Commands1313709
+Ref: maint info breakpoints1315364
+Node: Remote Protocol1331291
+Node: Overview1331945
+Ref: Binary Data1334490
+Node: Packets1337015
+Ref: thread-id syntax1337915
+Ref: extended mode1339360
+Ref: bc1341084
+Ref: bs1341294
+Ref: read registers packet1342899
+Ref: cycle step packet1344832
+Ref: write register packet1346709
+Ref: step with signal packet1347706
+Ref: vCont packet1349162
+Ref: X packet1354974
+Ref: insert breakpoint or watchpoint packet1355261
+Node: Stop Reply Packets1359303
+Node: General Query Packets1364047
+Ref: QNonStop1374271
+Ref: QPassSignals1374898
+Ref: QProgramSignals1376070
+Ref: qSearch memory1378550
+Ref: QStartNoAckMode1379049
+Ref: qSupported1379580
+Ref: multiprocess extensions1392278
+Ref: install tracepoint in tracing1394308
+Ref: qXfer read1397668
+Ref: qXfer auxiliary vector read1398163
+Ref: qXfer btrace read1398511
+Ref: qXfer target description read1399134
+Ref: qXfer library list read1399568
+Ref: qXfer svr4 library list read1400224
+Ref: qXfer memory map read1402077
+Ref: qXfer sdata read1402464
+Ref: qXfer siginfo read1402930
+Ref: qXfer spu read1403327
+Ref: qXfer threads read1403851
+Ref: qXfer traceframe info read1404254
+Ref: qXfer unwind info block1404672
+Ref: qXfer fdpic loadmap read1404906
+Ref: qXfer osdata read1405322
+Ref: qXfer write1406529
+Ref: qXfer siginfo write1407082
+Ref: qXfer spu write1407479
+Ref: General Query Packets-Footnote-11410012
+Node: Architecture-Specific Protocol Details1410339
+Node: ARM-Specific Protocol Details1410848
+Node: ARM Breakpoint Kinds1411096
+Node: MIPS-Specific Protocol Details1411427
+Node: MIPS Register packet Format1411710
+Node: MIPS Breakpoint Kinds1412637
+Node: Tracepoint Packets1413055
+Ref: QTEnable1422050
+Ref: QTDisable1422246
+Ref: qTfSTM1427785
+Ref: qTsSTM1427785
+Ref: qTSTMat1428824
+Ref: QTBuffer-size1429971
+Node: Host I/O Packets1431940
+Node: Interrupts1436550
+Node: Notification Packets1438453
+Node: Remote Non-Stop1443862
+Node: Packet Acknowledgment1446152
+Node: Examples1448267
+Node: File-I/O Remote Protocol Extension1448861
+Node: File-I/O Overview1449323
+Node: Protocol Basics1451522
+Node: The F Request Packet1453751
+Node: The F Reply Packet1454652
+Node: The Ctrl-C Message1455570
+Node: Console I/O1457196
+Node: List of Supported Calls1458412
+Node: open1458774
+Node: close1461282
+Node: read1461665
+Node: write1462274
+Node: lseek1463045
+Node: rename1463929
+Node: unlink1465336
+Node: stat/fstat1466283
+Node: gettimeofday1467176
+Node: isatty1467612
+Node: system1468208
+Node: Protocol-specific Representation of Datatypes1469750
+Node: Integral Datatypes1470127
+Node: Pointer Values1470934
+Node: Memory Transfer1471638
+Node: struct stat1472258
+Node: struct timeval1474460
+Node: Constants1474977
+Node: Open Flags1475426
+Node: mode_t Values1475767
+Node: Errno Values1476259
+Node: Lseek Flags1477069
+Node: Limits1477254
+Node: File-I/O Examples1477614
+Node: Library List Format1478702
+Node: Library List Format for SVR4 Targets1481484
+Node: Memory Map Format1483951
+Node: Thread List Format1486526
+Node: Traceframe Info Format1487344
+Node: Branch Trace Format1489030
+Node: Agent Expressions1490375
+Node: General Bytecode Design1493196
+Node: Bytecode Descriptions1497990
+Node: Using Agent Expressions1512320
+Node: Varying Target Capabilities1514297
+Node: Rationale1515458
+Node: Target Descriptions1522847
+Node: Retrieving Descriptions1524721
+Node: Target Description Format1525806
+Node: Predefined Target Types1534854
+Node: Standard Target Features1536238
+Node: AArch64 Features1538102
+Node: ARM Features1538525
+Node: i386 Features1540043
+Node: MIPS Features1541400
+Node: M68K Features1542585
+Node: Nios II Features1543248
+Node: PowerPC Features1543646
+Node: S/390 and System z Features1544969
+Node: TIC6x Features1546434
+Node: Operating System Information1546994
+Node: Process list1547829
+Node: Trace File Format1548892
+Node: Index Section Format1550885
+Node: Man Pages1558855
+Node: gdb man1559261
+Node: gdbserver man1565297
+Node: gcore man1572302
+Node: gdbinit man1572959
+Node: Copying1573842
+Node: GNU Free Documentation License1611402
+Node: Concept Index1636548
+Node: Command and Variable Index1759559
 
 End Tag Table
diff --git a/gdb/doc/gdb.info-1 b/gdb/doc/gdb.info-1
index e7a1b22..357548f 100644
--- a/gdb/doc/gdb.info-1
+++ b/gdb/doc/gdb.info-1
@@ -21,7 +21,7 @@ END-INFO-DIR-ENTRY
    This file documents the GNU debugger GDB.
 
    This is the Tenth Edition, of 'Debugging with GDB: the GNU
-Source-Level Debugger' for GDB (GDB) Version 7.7.
+Source-Level Debugger' for GDB (GDB) Version 7.7.1.
 
    Copyright (C) 1988-2014 Free Software Foundation, Inc.
 
@@ -44,7 +44,7 @@ Debugging with GDB
 
 This file describes GDB, the GNU symbolic debugger.
 
-   This is the Tenth Edition, for GDB (GDB) Version 7.7.
+   This is the Tenth Edition, for GDB (GDB) Version 7.7.1.
 
    Copyright (C) 1988-2014 Free Software Foundation, Inc.
 
@@ -491,7 +491,7 @@ Let us use GDB to try to see what is going on.
      There is absolutely no warranty for GDB; type "show warranty"
       for details.
 
-     GDB 7.7, Copyright 1999 Free Software Foundation, Inc...
+     GDB 7.7.1, Copyright 1999 Free Software Foundation, Inc...
      (gdb)
 
 GDB reads only enough symbol data to know where to find the rest when
diff --git a/gdb/doc/gdb.info-5 b/gdb/doc/gdb.info-5
index d862c9e..322e520 100644
--- a/gdb/doc/gdb.info-5
+++ b/gdb/doc/gdb.info-5
@@ -2373,7 +2373,7 @@ and TeX (or 'texi2roff') to typeset the printed version.
 
    GDB includes an already formatted copy of the on-line Info version of
 this manual in the 'gdb' subdirectory.  The main Info file is
-'gdb-7.7/gdb/gdb.info', and it refers to subordinate files matching
+'gdb-7.7.1/gdb/gdb.info', and it refers to subordinate files matching
 'gdb.info*' in the same directory.  If necessary, you can print out
 these files, or read them with any editor; but they are easier to read
 using the 'info' subsystem in GNU Emacs or the standalone 'info'
@@ -2383,8 +2383,8 @@ program, available as part of the GNU Texinfo distribution.
 Info formatting programs, such as 'texinfo-format-buffer' or 'makeinfo'.
 
    If you have 'makeinfo' installed, and are in the top level GDB source
-directory ('gdb-7.7', in the case of version 7.7), you can make the Info
-file by typing:
+directory ('gdb-7.7.1', in the case of version 7.7.1), you can make the
+Info file by typing:
 
      cd gdb
      make gdb.info
@@ -2409,7 +2409,7 @@ On its own, TeX cannot either read or typeset a Texinfo file.
 
    If you have TeX and a DVI printer program installed, you can typeset
 and print this manual.  First switch to the 'gdb' subdirectory of the
-main source directory (for example, to 'gdb-7.7/gdb') and type:
+main source directory (for example, to 'gdb-7.7.1/gdb') and type:
 
      make gdb.dvi
 
@@ -2417,7 +2417,7 @@ main source directory (for example, to 'gdb-7.7/gdb') and type:
 
    ---------- Footnotes ----------
 
-   (1) In 'gdb-7.7/gdb/refcard.ps' of the version 7.7 release.
+   (1) In 'gdb-7.7.1/gdb/refcard.ps' of the version 7.7.1 release.
 
 
 File: gdb.info,  Node: Installing GDB,  Next: Maintenance Commands,  Prev: Formatting Documentation,  Up: Top
@@ -2520,39 +2520,39 @@ preparing GDB for installation; you can then use 'make' to build the
 a single directory, whose name is usually composed by appending the
 version number to 'gdb'.
 
-   For example, the GDB version 7.7 distribution is in the 'gdb-7.7'
+   For example, the GDB version 7.7.1 distribution is in the 'gdb-7.7.1'
 directory.  That directory contains:
 
-'gdb-7.7/configure (and supporting files)'
+'gdb-7.7.1/configure (and supporting files)'
      script for configuring GDB and all its supporting libraries
 
-'gdb-7.7/gdb'
+'gdb-7.7.1/gdb'
      the source specific to GDB itself
 
-'gdb-7.7/bfd'
+'gdb-7.7.1/bfd'
      source for the Binary File Descriptor library
 
-'gdb-7.7/include'
+'gdb-7.7.1/include'
      GNU include files
 
-'gdb-7.7/libiberty'
+'gdb-7.7.1/libiberty'
      source for the '-liberty' free software library
 
-'gdb-7.7/opcodes'
+'gdb-7.7.1/opcodes'
      source for the library of opcode tables and disassemblers
 
-'gdb-7.7/readline'
+'gdb-7.7.1/readline'
      source for the GNU command-line interface
 
-'gdb-7.7/glob'
+'gdb-7.7.1/glob'
      source for the GNU filename pattern-matching subroutine
 
-'gdb-7.7/mmalloc'
+'gdb-7.7.1/mmalloc'
      source for the GNU memory-mapped malloc package
 
    The simplest way to configure and build GDB is to run 'configure'
 from the 'gdb-VERSION-NUMBER' source directory, which in this example is
-the 'gdb-7.7' directory.
+the 'gdb-7.7.1' directory.
 
    First switch to the 'gdb-VERSION-NUMBER' source directory if you are
 not already in it; then run 'configure'.  Pass the identifier for the
@@ -2560,7 +2560,7 @@ platform on which GDB will run as an argument.
 
    For example:
 
-     cd gdb-7.7
+     cd gdb-7.7.1
      ./configure HOST
      make
 
@@ -2581,8 +2581,8 @@ need to run 'sh' on it explicitly:
      sh configure HOST
 
    If you run 'configure' from a directory that contains source
-directories for multiple libraries or programs, such as the 'gdb-7.7'
-source directory for version 7.7, 'configure' creates configuration
+directories for multiple libraries or programs, such as the 'gdb-7.7.1'
+source directory for version 7.7.1, 'configure' creates configuration
 files for every directory level underneath (unless you tell it not to,
 with the '--norecursion' option).
 
@@ -2622,13 +2622,13 @@ to specify a path to find 'configure' itself from your working
 directory.  If the path to 'configure' would be the same as the argument
 to '--srcdir', you can leave out the '--srcdir' option; it is assumed.)
 
-   For example, with version 7.7, you can build GDB in a separate
+   For example, with version 7.7.1, you can build GDB in a separate
 directory for a Sun 4 like this:
 
-     cd gdb-7.7
+     cd gdb-7.7.1
      mkdir ../gdb-sun4
      cd ../gdb-sun4
-     ../gdb-7.7/configure sun4
+     ../gdb-7.7.1/configure sun4
      make
 
    When 'configure' builds a configuration using a remote source
@@ -2639,8 +2639,8 @@ the example, you'd find the Sun 4 library 'libiberty.a' in the directory
 
    Make sure that your path to the 'configure' script has just one
 instance of 'gdb' in it.  If your path to 'configure' looks like
-'../gdb-7.7/gdb/configure', you are configuring only one subdirectory of
-GDB, not the whole package.  This leads to build errors about missing
+'../gdb-7.7.1/gdb/configure', you are configuring only one subdirectory
+of GDB, not the whole package.  This leads to build errors about missing
 include files such as 'bfd/bfd.h'.
 
    One popular reason to build several GDB configurations in separate
@@ -2655,9 +2655,9 @@ a configured directory--whatever directory you were in when you called
 
    The 'Makefile' that 'configure' generates in each source directory
 also runs recursively.  If you type 'make' in a source directory such as
-'gdb-7.7' (or in a separate configured directory configured with
-'--srcdir=DIRNAME/gdb-7.7'), you will build all the required libraries,
-and then build GDB.
+'gdb-7.7.1' (or in a separate configured directory configured with
+'--srcdir=DIRNAME/gdb-7.7.1'), you will build all the required
+libraries, and then build GDB.
 
    When you have multiple hosts or targets configured in separate
 directories, you can run 'make' on them in parallel (for example, if
@@ -2700,8 +2700,8 @@ you can use it to test your guesses on abbreviations--for example:
      % sh config.sub i986v
      Invalid configuration `i986v': machine `i986v' not recognized
 
-'config.sub' is also distributed in the GDB source directory ('gdb-7.7',
-for version 7.7).
+'config.sub' is also distributed in the GDB source directory
+('gdb-7.7.1', for version 7.7.1).
 
 
 File: gdb.info,  Node: Configure Options,  Next: System-wide configuration,  Prev: Config Names,  Up: Installing GDB
diff --git a/gdb/doc/gdbinit.5 b/gdb/doc/gdbinit.5
index 30e620c..749cdbc 100644
--- a/gdb/doc/gdbinit.5
+++ b/gdb/doc/gdbinit.5
@@ -124,7 +124,7 @@
 .\" ========================================================================
 .\"
 .IX Title "GDBINIT 5"
-.TH GDBINIT 5 "2014-02-06" "gdb-7.7" "GNU Development Tools"
+.TH GDBINIT 5 "2014-05-05" "gdb-7.7.1" "GNU Development Tools"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
diff --git a/gdb/doc/gdbserver.1 b/gdb/doc/gdbserver.1
index 33d3039..aa38316 100644
--- a/gdb/doc/gdbserver.1
+++ b/gdb/doc/gdbserver.1
@@ -124,7 +124,7 @@
 .\" ========================================================================
 .\"
 .IX Title "GDBSERVER 1"
-.TH GDBSERVER 1 "2014-02-06" "gdb-7.7" "GNU Development Tools"
+.TH GDBSERVER 1 "2014-05-05" "gdb-7.7.1" "GNU Development Tools"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
diff --git a/gdb/infrun.c b/gdb/infrun.c
index 51540b3..05639c6 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -4379,7 +4379,11 @@ handle_signal_stop (struct execution_control_state *ecs)
 	  ecs->event_thread->step_after_step_resume_breakpoint = 1;
 	  /* Reset trap_expected to ensure breakpoints are re-inserted.  */
 	  ecs->event_thread->control.trap_expected = 0;
-	  keep_going (ecs);
+
+	  /* If we were nexting/stepping some other thread, switch to
+	     it, so that we don't continue it, losing control.  */
+	  if (!switch_back_to_stepped_thread (ecs))
+	    keep_going (ecs);
 	  return;
 	}
 
diff --git a/gdb/po/gdb.pot b/gdb/po/gdb.pot
index 87c7cca..ce751ce 100644
--- a/gdb/po/gdb.pot
+++ b/gdb/po/gdb.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-06 06:42+0400\n"
+"POT-Creation-Date: 2014-05-05 14:56-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -2527,22 +2527,22 @@ msgstr ""
 msgid "Num pushes too large: %d\n"
 msgstr ""
 
-#: avr-tdep.c:1483
+#: avr-tdep.c:1490
 msgid "ERR: info io_registers NOT supported by current target\n"
 msgstr ""
 
-#: avr-tdep.c:1491
+#: avr-tdep.c:1498
 msgid "Error fetching number of io registers\n"
 msgstr ""
 
-#: avr-tdep.c:1500
+#: avr-tdep.c:1507
 #, possible-c-format
 msgid ""
 "Target has %u io registers:\n"
 "\n"
 msgstr ""
 
-#: avr-tdep.c:1549
+#: avr-tdep.c:1556
 msgid "query remote avr target for io space register values"
 msgstr ""
 
@@ -8013,56 +8013,56 @@ msgstr ""
 msgid "Deprecated remotecache flag is %s.\n"
 msgstr ""
 
-#: dcache.c:564 dcache.c:629
+#: dcache.c:542 dcache.c:607
 msgid "No data cache available.\n"
 msgstr ""
 
-#: dcache.c:579
+#: dcache.c:557
 msgid "No such cache line exists.\n"
 msgstr ""
 
-#: dcache.c:585 dcache.c:645
+#: dcache.c:563 dcache.c:623
 #, possible-c-format
 msgid "Line %d: address %s [%d hits]\n"
 msgstr ""
 
-#: dcache.c:614
+#: dcache.c:592
 msgid "Usage: info dcache [linenumber]\n"
 msgstr ""
 
-#: dcache.c:622
+#: dcache.c:600
 #, possible-c-format
 msgid "Dcache %u lines of %u bytes each.\n"
 msgstr ""
 
-#: dcache.c:633
+#: dcache.c:611
 #, possible-c-format
 msgid "Contains data for %s\n"
 msgstr ""
 
-#: dcache.c:653
+#: dcache.c:631
 #, possible-c-format
 msgid "Cache state: %d active lines, %d hits\n"
 msgstr ""
 
-#: dcache.c:669
+#: dcache.c:647
 msgid "Dcache size must be greater than 0."
 msgstr ""
 
-#: dcache.c:683
+#: dcache.c:661
 #, possible-c-format
 msgid "Invalid dcache line size: %u (must be power of 2)."
 msgstr ""
 
-#: dcache.c:706
+#: dcache.c:684
 msgid "Set cache use for remote targets."
 msgstr ""
 
-#: dcache.c:707
+#: dcache.c:685
 msgid "Show cache use for remote targets."
 msgstr ""
 
-#: dcache.c:708
+#: dcache.c:686
 msgid ""
 "This used to enable the data cache for remote targets.  The cache\n"
 "functionality is now controlled by the memory region system and the\n"
@@ -8070,7 +8070,7 @@ msgid ""
 "exists only for compatibility reasons."
 msgstr ""
 
-#: dcache.c:718
+#: dcache.c:696
 msgid ""
 "Print information on the dcache performance.\n"
 "With no arguments, this command prints the cache configuration and a\n"
@@ -8078,28 +8078,28 @@ msgid ""
 "the contents of a given line."
 msgstr ""
 
-#: dcache.c:724
+#: dcache.c:702
 msgid "Use this command to set number of lines in dcache and line-size."
 msgstr ""
 
 #. allow_unknown
-#: dcache.c:727
+#: dcache.c:705
 msgid "Show dcachesettings."
 msgstr ""
 
-#: dcache.c:732
+#: dcache.c:710
 msgid "Set dcache line size in bytes (must be power of 2)."
 msgstr ""
 
-#: dcache.c:733
+#: dcache.c:711
 msgid "Show dcache line size."
 msgstr ""
 
-#: dcache.c:740
+#: dcache.c:718
 msgid "Set number of dcache lines."
 msgstr ""
 
-#: dcache.c:741
+#: dcache.c:719
 msgid "Show number of dcache lines."
 msgstr ""
 
@@ -12153,7 +12153,7 @@ msgid ""
 "Cannot remove breakpoint at address %s, no break instruction at such address."
 msgstr ""
 
-#: inf-child.c:110 windows-nat.c:2037
+#: inf-child.c:110 windows-nat.c:2054
 msgid "Use the \"run\" command to start a Unix child process."
 msgstr ""
 
@@ -12564,7 +12564,7 @@ msgstr ""
 msgid "The program being debugged is not being run.\n"
 msgstr ""
 
-#: infcmd.c:1832 infrun.c:6714
+#: infcmd.c:1832 infrun.c:6718
 msgid "Selected thread is running."
 msgstr ""
 
@@ -12637,7 +12637,7 @@ msgstr ""
 msgid "In %s,\n"
 msgstr ""
 
-#: infcmd.c:2527 target.c:2591
+#: infcmd.c:2527 target.c:2582
 msgid "A program is being debugged already.  Kill it? "
 msgstr ""
 
@@ -13187,7 +13187,7 @@ msgid ""
 "this platform."
 msgstr ""
 
-#: infrun.c:201 infrun.c:230 target.c:5013 target.c:5061
+#: infrun.c:201 infrun.c:230 target.c:5004 target.c:5052
 msgid "Cannot change this setting while the inferior is running."
 msgstr ""
 
@@ -13295,119 +13295,119 @@ msgstr ""
 msgid "Cannot step over breakpoint hit in wrong thread"
 msgstr ""
 
-#: infrun.c:6040 linux-fork.c:377 linux-fork.c:409
+#: infrun.c:6044 linux-fork.c:377 linux-fork.c:409
 #, possible-c-format
 msgid "[Switching to %s]\n"
 msgstr ""
 
-#: infrun.c:6051
+#: infrun.c:6055
 msgid "No unwaited-for children left.\n"
 msgstr ""
 
-#: infrun.c:6059
+#: infrun.c:6063
 msgid ""
 "Cannot remove breakpoints because program is no longer writable.\n"
 "Further execution is probably impossible.\n"
 msgstr ""
 
-#: infrun.c:6159
+#: infrun.c:6163
 msgid "Unknown value."
 msgstr ""
 
-#: infrun.c:6346
+#: infrun.c:6350
 msgid "Signal        Stop\tPrint\tPass to program\tDescription\n"
 msgstr ""
 
-#: infrun.c:6383
+#: infrun.c:6387
 msgid "signal to handle"
 msgstr ""
 
 #. Not a number and not a recognized flag word => complain.
-#: infrun.c:6486
+#: infrun.c:6490
 #, possible-c-format
 msgid "Unrecognized or ambiguous flag word: \"%s\"."
 msgstr ""
 
-#: infrun.c:6501
+#: infrun.c:6505
 #, possible-c-format
 msgid ""
 "%s is used by the debugger.\n"
 "Are you sure you want to change it? "
 msgstr ""
 
-#: infrun.c:6509
+#: infrun.c:6513
 msgid "Not confirmed, unchanged.\n"
 msgstr ""
 
-#: infrun.c:6587
+#: infrun.c:6591
 msgid "xdb command"
 msgstr ""
 
-#: infrun.c:6638
+#: infrun.c:6642
 msgid "Invalid signal handling flag.\n"
 msgstr ""
 
-#: infrun.c:6651
+#: infrun.c:6655
 msgid ""
 "Only signals 1-15 are valid as numeric signals.\n"
 "Use \"info signals\" for a list of symbolic signals."
 msgstr ""
 
-#: infrun.c:6694
+#: infrun.c:6698
 msgid ""
 "\n"
 "Use the \"handle\" command to change these tables.\n"
 msgstr ""
 
-#: infrun.c:6706
+#: infrun.c:6710
 msgid "No thread selected."
 msgstr ""
 
-#: infrun.c:6710
+#: infrun.c:6714
 msgid "The current thread has terminated"
 msgstr ""
 
-#: infrun.c:6745
+#: infrun.c:6749
 msgid "Unable to read siginfo"
 msgstr ""
 
-#: infrun.c:6766
+#: infrun.c:6770
 msgid "Unable to write siginfo"
 msgstr ""
 
-#: infrun.c:7004 stack.c:1826 stack.c:2051
+#: infrun.c:7008 stack.c:1826 stack.c:2051
 msgid "Unable to restore previously selected frame."
 msgstr ""
 
-#: infrun.c:7165
+#: infrun.c:7169
 msgid "Target does not support this operation."
 msgstr ""
 
-#: infrun.c:7175
+#: infrun.c:7179
 msgid "Forward.\n"
 msgstr ""
 
-#: infrun.c:7178
+#: infrun.c:7182
 msgid "Reverse.\n"
 msgstr ""
 
-#: infrun.c:7182
+#: infrun.c:7186
 #, possible-c-format
 msgid "bogus execution_direction value: %d"
 msgstr ""
 
-#: infrun.c:7191
+#: infrun.c:7195
 #, possible-c-format
 msgid "Resuming the execution of threads of all processes is %s.\n"
 msgstr ""
 
-#: infrun.c:7211 infrun.c:7244
+#: infrun.c:7215 infrun.c:7248
 msgid ""
 "What debugger does when program gets various signals.\n"
 "Specify a signal as argument to print info on that signal only."
 msgstr ""
 
-#: infrun.c:7216
+#: infrun.c:7220
 msgid ""
 "Specify how to handle signals.\n"
 "Usage: handle SIGNAL [ACTIONS]\n"
@@ -13434,7 +13434,7 @@ msgid ""
 "all signals cumulatively specified."
 msgstr ""
 
-#: infrun.c:7247
+#: infrun.c:7251
 msgid ""
 "Specify how to handle a signal.\n"
 "Args are signals and actions to apply to those signals.\n"
@@ -13453,46 +13453,46 @@ msgid ""
 "Pass and Stop may be combined."
 msgstr ""
 
-#: infrun.c:7267
+#: infrun.c:7271
 msgid ""
 "There is no `stop' command, but you can set a hook on `stop'.\n"
 "This allows you to set a list of commands to be run each time execution\n"
 "of the program stops."
 msgstr ""
 
-#: infrun.c:7272
+#: infrun.c:7276
 msgid "Set inferior debugging."
 msgstr ""
 
-#: infrun.c:7273
+#: infrun.c:7277
 msgid "Show inferior debugging."
 msgstr ""
 
-#: infrun.c:7274
+#: infrun.c:7278
 msgid "When non-zero, inferior specific debugging is enabled."
 msgstr ""
 
-#: infrun.c:7281
+#: infrun.c:7285
 msgid "Set displaced stepping debugging."
 msgstr ""
 
-#: infrun.c:7282
+#: infrun.c:7286
 msgid "Show displaced stepping debugging."
 msgstr ""
 
-#: infrun.c:7283
+#: infrun.c:7287
 msgid "When non-zero, displaced stepping specific debugging is enabled."
 msgstr ""
 
-#: infrun.c:7290
+#: infrun.c:7294
 msgid "Set whether gdb controls the inferior in non-stop mode."
 msgstr ""
 
-#: infrun.c:7291
+#: infrun.c:7295
 msgid "Show whether gdb controls the inferior in non-stop mode."
 msgstr ""
 
-#: infrun.c:7292
+#: infrun.c:7296
 msgid ""
 "When debugging a multi-threaded program and this setting is\n"
 "off (the default, also called all-stop mode), when one thread stops\n"
@@ -13507,30 +13507,30 @@ msgid ""
 "leave it stopped or free to run as needed."
 msgstr ""
 
-#: infrun.c:7367
+#: infrun.c:7371
 msgid "Set stopping for shared library events."
 msgstr ""
 
-#: infrun.c:7368
+#: infrun.c:7372
 msgid "Show stopping for shared library events."
 msgstr ""
 
-#: infrun.c:7369
+#: infrun.c:7373
 msgid ""
 "If nonzero, gdb will give control to the user when the dynamic linker\n"
 "notifies gdb of shared library events.  The most common event of interest\n"
 "to the user would be loading/unloading of a new library."
 msgstr ""
 
-#: infrun.c:7379
+#: infrun.c:7383
 msgid "Set debugger response to a program call of fork or vfork."
 msgstr ""
 
-#: infrun.c:7380
+#: infrun.c:7384
 msgid "Show debugger response to a program call of fork or vfork."
 msgstr ""
 
-#: infrun.c:7381
+#: infrun.c:7385
 msgid ""
 "A fork or vfork creates a new process.  follow-fork-mode can be:\n"
 "  parent  - the original process is debugged after a fork\n"
@@ -13539,15 +13539,15 @@ msgid ""
 "By default, the debugger will follow the parent process."
 msgstr ""
 
-#: infrun.c:7393
+#: infrun.c:7397
 msgid "Set debugger response to a program call of exec."
 msgstr ""
 
-#: infrun.c:7394
+#: infrun.c:7398
 msgid "Show debugger response to a program call of exec."
 msgstr ""
 
-#: infrun.c:7395
+#: infrun.c:7399
 msgid ""
 "An exec call replaces the program image of a process.\n"
 "\n"
@@ -13566,15 +13566,15 @@ msgid ""
 "By default, the debugger will use the same inferior."
 msgstr ""
 
-#: infrun.c:7416
+#: infrun.c:7420
 msgid "Set mode for locking scheduler during execution."
 msgstr ""
 
-#: infrun.c:7417
+#: infrun.c:7421
 msgid "Show mode for locking scheduler during execution."
 msgstr ""
 
-#: infrun.c:7418
+#: infrun.c:7422
 msgid ""
 "off  == no locking (threads may preempt at any time)\n"
 "on   == full locking (no thread except the current thread may run)\n"
@@ -13583,15 +13583,15 @@ msgid ""
 "\tOther threads may run while stepping over a function call ('next')."
 msgstr ""
 
-#: infrun.c:7428
+#: infrun.c:7432
 msgid "Set mode for resuming threads of all processes."
 msgstr ""
 
-#: infrun.c:7429
+#: infrun.c:7433
 msgid "Show mode for resuming threads of all processes."
 msgstr ""
 
-#: infrun.c:7430
+#: infrun.c:7434
 msgid ""
 "When on, execution commands (such as 'continue' or 'next') resume all\n"
 "threads of all processes.  When off (which is the default), execution\n"
@@ -13600,30 +13600,30 @@ msgid ""
 "mode (see help set scheduler-locking)."
 msgstr ""
 
-#: infrun.c:7440
+#: infrun.c:7444
 msgid "Set mode of the step operation."
 msgstr ""
 
-#: infrun.c:7441
+#: infrun.c:7445
 msgid "Show mode of the step operation."
 msgstr ""
 
-#: infrun.c:7442
+#: infrun.c:7446
 msgid ""
 "When set, doing a step over a function without debug line information\n"
 "will stop at the first instruction of that function. Otherwise, the\n"
 "function is skipped and the step command stops at a different source line."
 msgstr ""
 
-#: infrun.c:7451
+#: infrun.c:7455
 msgid "Set debugger's willingness to use displaced stepping."
 msgstr ""
 
-#: infrun.c:7452
+#: infrun.c:7456
 msgid "Show debugger's willingness to use displaced stepping."
 msgstr ""
 
-#: infrun.c:7453
+#: infrun.c:7457
 msgid ""
 "If on, gdb will use displaced stepping to step over breakpoints if it is\n"
 "supported by the target architecture.  If off, gdb will not use displaced\n"
@@ -13635,57 +13635,57 @@ msgid ""
 "use it in all-stop mode (see help set non-stop)."
 msgstr ""
 
-#: infrun.c:7465
+#: infrun.c:7469
 msgid ""
 "Set direction of execution.\n"
 "Options are 'forward' or 'reverse'."
 msgstr ""
 
-#: infrun.c:7467
+#: infrun.c:7471
 msgid "Show direction of execution (forward/reverse)."
 msgstr ""
 
-#: infrun.c:7468
+#: infrun.c:7472
 msgid "Tells gdb whether to execute forward or backward."
 msgstr ""
 
 #. Set/show detach-on-fork: user-settable mode.
-#: infrun.c:7474
+#: infrun.c:7478
 msgid "Set whether gdb will detach the child of a fork."
 msgstr ""
 
-#: infrun.c:7475
+#: infrun.c:7479
 msgid "Show whether gdb will detach the child of a fork."
 msgstr ""
 
-#: infrun.c:7476
+#: infrun.c:7480
 msgid "Tells gdb whether to detach the child of a fork."
 msgstr ""
 
-#: infrun.c:7483
+#: infrun.c:7487
 msgid "Set disabling of debuggee's virtual address space randomization."
 msgstr ""
 
-#: infrun.c:7484
+#: infrun.c:7488
 msgid "Show disabling of debuggee's virtual address space randomization."
 msgstr ""
 
-#: infrun.c:7485
+#: infrun.c:7489
 msgid ""
 "When this mode is on (which is the default), randomization of the virtual\n"
 "address space is disabled.  Standalone programs run with the randomization\n"
 "enabled by default on some platforms."
 msgstr ""
 
-#: infrun.c:7509
+#: infrun.c:7513
 msgid "Set whether gdb controls the inferior in observer mode."
 msgstr ""
 
-#: infrun.c:7510
+#: infrun.c:7514
 msgid "Show whether gdb controls the inferior in observer mode."
 msgstr ""
 
-#: infrun.c:7511
+#: infrun.c:7515
 msgid ""
 "In observer mode, GDB can get data from the inferior, but not\n"
 "affect its execution.  Registers and memory may not be changed,\n"
@@ -25001,72 +25001,72 @@ msgstr ""
 msgid "Cannot find thread-local variables on this target"
 msgstr ""
 
-#: target.c:1555
+#: target.c:1572
 msgid "Writing to flash memory forbidden in this context"
 msgstr ""
 
-#: target.c:1700
+#: target.c:1691
 #, possible-c-format
 msgid "Writing to memory is not allowed (addr %s, len %s)"
 msgstr ""
 
-#: target.c:1908
+#: target.c:1899
 msgid "Overlapping regions in memory map: ignoring"
 msgstr ""
 
-#: target.c:1958
+#: target.c:1949
 #, possible-c-format
 msgid "Mode for reading from readonly sections is %s.\n"
 msgstr ""
 
-#: target.c:2424
+#: target.c:2415
 #, possible-c-format
 msgid "target object %d, annex %s, contained unexpected null characters"
 msgstr ""
 
-#: target.c:2465
+#: target.c:2456
 msgid "May not insert breakpoints"
 msgstr ""
 
-#: target.c:2482
+#: target.c:2473
 msgid "May not remove breakpoints"
 msgstr ""
 
-#: target.c:2496
+#: target.c:2487
 #, possible-c-format
 msgid "Symbols from \"%s\".\n"
 msgstr ""
 
-#: target.c:2507
+#: target.c:2498
 msgid "\tWhile running this, GDB does not access memory from...\n"
 msgstr ""
 
-#: target.c:2594
+#: target.c:2585
 msgid "Program not killed."
 msgstr ""
 
-#: target.c:2636
+#: target.c:2627
 msgid "could not find a target to detach"
 msgstr ""
 
-#: target.c:2837
+#: target.c:2828
 msgid "could not find a target to follow fork"
 msgstr ""
 
-#: target.c:2863
+#: target.c:2854
 msgid "could not find a target to follow mourn inferior"
 msgstr ""
 
-#: target.c:2914
+#: target.c:2905
 msgid "Unable to allocate memory to perform the search."
 msgstr ""
 
-#: target.c:2922 target.c:2977
+#: target.c:2913 target.c:2968
 #, possible-c-format
 msgid "Unable to access %s bytes of target memory at %s, halting search."
 msgstr ""
 
-#: target.c:3067
+#: target.c:3058
 #, possible-c-format
 msgid ""
 "The \"%s\" target does not support \"run\".  Try \"help target\" or "
@@ -25076,184 +25076,184 @@ msgstr ""
 #. This function is only called if the target is running.  In that
 #. case there should have been a process_stratum target and it
 #. should either know how to create inferiors, or not...
-#: target.c:3075
+#: target.c:3066
 msgid "No targets found"
 msgstr ""
 
-#: target.c:3107
+#: target.c:3098
 #, possible-c-format
 msgid "Don't know how to %s.  Try \"help target\"."
 msgstr ""
 
-#: target.c:3294
+#: target.c:3285
 #, possible-c-format
 msgid "Can't determine the current address space of thread %s\n"
 msgstr ""
 
-#: target.c:3591
+#: target.c:3582
 #, possible-c-format
 msgid "target file %s contained unexpected null characters"
 msgstr ""
 
-#: target.c:3713 target.c:3721
+#: target.c:3704 target.c:3712
 msgid "Command not implemented for this target."
 msgstr ""
 
-#: target.c:3817
+#: target.c:3808
 msgid "could not find a target to attach"
 msgstr ""
 
-#: target.c:3866
+#: target.c:3857
 msgid "May not interrupt or stop the target, ignoring attempt"
 msgstr ""
 
-#: target.c:3989
+#: target.c:3980
 #, possible-c-format
 msgid "Writing to registers is not allowed (regno %d)"
 msgstr ""
 
-#: target.c:4980
+#: target.c:4971
 msgid "\"monitor\" command not supported by this target."
 msgstr ""
 
-#: target.c:4991
+#: target.c:4982
 msgid "The current target stack is:\n"
 msgstr ""
 
-#: target.c:5025
+#: target.c:5016
 #, possible-c-format
 msgid "Controlling the inferior in asynchronous mode is %s.\n"
 msgstr ""
 
-#: target.c:5094
+#: target.c:5085
 msgid "Set target debugging."
 msgstr ""
 
-#: target.c:5095
+#: target.c:5086
 msgid "Show target debugging."
 msgstr ""
 
-#: target.c:5096
+#: target.c:5087
 msgid ""
 "When non-zero, target debugging is enabled.  Higher numbers are more\n"
 "verbose.  Changes do not take effect until the next \"run\" or \"target\"\n"
 "command."
 msgstr ""
 
-#: target.c:5105
+#: target.c:5096
 msgid "Set mode for reading from readonly sections."
 msgstr ""
 
-#: target.c:5106
+#: target.c:5097
 msgid "Show mode for reading from readonly sections."
 msgstr ""
 
-#: target.c:5107
+#: target.c:5098
 msgid ""
 "When this mode is on, memory reads from readonly sections (such as .text)\n"
 "will be read from the object file instead of from the target.  This will\n"
 "result in significant performance improvement for remote targets."
 msgstr ""
 
-#: target.c:5116
+#: target.c:5107
 msgid "Send a command to the remote monitor (remote targets only)."
 msgstr ""
 
-#: target.c:5119
+#: target.c:5110
 msgid "Print the name of each layer of the internal target stack."
 msgstr ""
 
-#: target.c:5123
+#: target.c:5114
 msgid "Set whether gdb controls the inferior in asynchronous mode."
 msgstr ""
 
-#: target.c:5124
+#: target.c:5115
 msgid "Show whether gdb controls the inferior in asynchronous mode."
 msgstr ""
 
-#: target.c:5125
+#: target.c:5116
 msgid "Tells gdb whether to control the inferior in asynchronous mode."
 msgstr ""
 
-#: target.c:5133
+#: target.c:5124
 msgid "Set permission to write into registers."
 msgstr ""
 
-#: target.c:5134
+#: target.c:5125
 msgid "Show permission to write into registers."
 msgstr ""
 
-#: target.c:5135
+#: target.c:5126
 msgid ""
 "When this permission is on, GDB may write into the target's registers.\n"
 "Otherwise, any sort of write attempt will result in an error."
 msgstr ""
 
-#: target.c:5142
+#: target.c:5133
 msgid "Set permission to write into target memory."
 msgstr ""
 
-#: target.c:5143
+#: target.c:5134
 msgid "Show permission to write into target memory."
 msgstr ""
 
-#: target.c:5144
+#: target.c:5135
 msgid ""
 "When this permission is on, GDB may write into the target's memory.\n"
 "Otherwise, any sort of write attempt will result in an error."
 msgstr ""
 
-#: target.c:5151
+#: target.c:5142
 msgid "Set permission to insert breakpoints in the target."
 msgstr ""
 
-#: target.c:5152
+#: target.c:5143
 msgid "Show permission to insert breakpoints in the target."
 msgstr ""
 
-#: target.c:5153
+#: target.c:5144
 msgid ""
 "When this permission is on, GDB may insert breakpoints in the program.\n"
 "Otherwise, any sort of insertion attempt will result in an error."
 msgstr ""
 
-#: target.c:5160
+#: target.c:5151
 msgid "Set permission to insert tracepoints in the target."
 msgstr ""
 
-#: target.c:5161
+#: target.c:5152
 msgid "Show permission to insert tracepoints in the target."
 msgstr ""
 
-#: target.c:5162
+#: target.c:5153
 msgid ""
 "When this permission is on, GDB may insert tracepoints in the program.\n"
 "Otherwise, any sort of insertion attempt will result in an error."
 msgstr ""
 
-#: target.c:5169
+#: target.c:5160
 msgid "Set permission to insert fast tracepoints in the target."
 msgstr ""
 
-#: target.c:5170
+#: target.c:5161
 msgid "Show permission to insert fast tracepoints in the target."
 msgstr ""
 
-#: target.c:5171
+#: target.c:5162
 msgid ""
 "When this permission is on, GDB may insert fast tracepoints.\n"
 "Otherwise, any sort of insertion attempt will result in an error."
 msgstr ""
 
-#: target.c:5178
+#: target.c:5169
 msgid "Set permission to interrupt or signal the target."
 msgstr ""
 
-#: target.c:5179
+#: target.c:5170
 msgid "Show permission to interrupt or signal the target."
 msgstr ""
 
-#: target.c:5180
+#: target.c:5171
 msgid ""
 "When this permission is on, GDB may interrupt/stop the target's execution.\n"
 "Otherwise, any attempt to interrupt or stop will be ignored."
@@ -28173,31 +28173,31 @@ msgstr ""
 msgid "Unable to determine location of registers"
 msgstr ""
 
-#: windows-nat.c:313
+#: windows-nat.c:318
 #, possible-c-format
 msgid "SuspendThread (tid=0x%x) failed. (winerr %u)"
 msgstr ""
 
-#: windows-nat.c:401
+#: windows-nat.c:407
 #, possible-c-format
 msgid "[%s exited with code %u]\n"
 msgstr ""
 
-#: windows-nat.c:572
+#: windows-nat.c:578
 msgid "Can't get module info"
 msgstr ""
 
-#: windows-nat.c:582 windows-nat.c:591
+#: windows-nat.c:588 windows-nat.c:597
 #, possible-c-format
 msgid "Error getting dll name: %u."
 msgstr ""
 
-#: windows-nat.c:586
+#: windows-nat.c:592
 #, possible-c-format
 msgid "Error converting dll name to POSIX: %d."
 msgstr ""
 
-#: windows-nat.c:750
+#: windows-nat.c:756
 msgid "dll path too long"
 msgstr ""
 
@@ -28208,147 +28208,147 @@ msgstr ""
 #. 4 mysterious UNLOAD_DLL_DEBUG_EVENTs during the startup phase (these
 #. events are apparently caused by the WOW layer, the interface between
 #. 32bit and 64bit worlds).
-#: windows-nat.c:924
+#: windows-nat.c:930
 #, possible-c-format
 msgid "dll starting at %s not found."
 msgstr ""
 
-#: windows-nat.c:946
+#: windows-nat.c:952
 msgid "dll-symbols requires a file name"
 msgstr ""
 
-#: windows-nat.c:1327
+#: windows-nat.c:1344
 #, possible-c-format
 msgid "OpenProcess call failed, GetLastError = %u"
 msgstr ""
 
-#: windows-nat.c:1452
+#: windows-nat.c:1469
 msgid "Could not interrupt program.  Press Ctrl-c in the program console."
 msgstr ""
 
-#: windows-nat.c:1562
+#: windows-nat.c:1579
 #, possible-c-format
 msgid "During startup program exited with code 0x%x."
 msgstr ""
 
-#: windows-nat.c:1941
+#: windows-nat.c:1958
 msgid "Can't attach to process."
 msgstr ""
 
-#: windows-nat.c:1973
+#: windows-nat.c:1990
 #, possible-c-format
 msgid "Can't detach process %u (error %u)"
 msgstr ""
 
-#: windows-nat.c:2161
+#: windows-nat.c:2178
 msgid "No executable specified, use `target exec'."
 msgstr ""
 
-#: windows-nat.c:2178 windows-nat.c:2183
+#: windows-nat.c:2195 windows-nat.c:2200
 #, possible-c-format
 msgid "Error starting executable: %d"
 msgstr ""
 
-#: windows-nat.c:2196
+#: windows-nat.c:2213
 #, possible-c-format
 msgid "Error starting executable via shell: %d"
 msgstr ""
 
-#: windows-nat.c:2320
+#: windows-nat.c:2337
 #, possible-c-format
 msgid "Warning: Failed to open TTY %s, error %#x."
 msgstr ""
 
-#: windows-nat.c:2372
+#: windows-nat.c:2389
 #, possible-c-format
 msgid "Error creating process %s, (error %u)."
 msgstr ""
 
-#: windows-nat.c:2667
+#: windows-nat.c:2684
 msgid "Load dll library symbols from FILE."
 msgstr ""
 
-#: windows-nat.c:2677
+#: windows-nat.c:2694
 msgid "Set use of shell to start subprocess."
 msgstr ""
 
-#: windows-nat.c:2678
+#: windows-nat.c:2695
 msgid "Show use of shell to start subprocess."
 msgstr ""
 
-#: windows-nat.c:2685
+#: windows-nat.c:2702
 msgid "Break when an exception is detected in the Cygwin DLL itself."
 msgstr ""
 
-#: windows-nat.c:2686
+#: windows-nat.c:2703
 msgid "Show whether gdb breaks on exceptions in the Cygwin DLL itself."
 msgstr ""
 
-#: windows-nat.c:2693
+#: windows-nat.c:2710
 msgid "Set creation of new console when creating child process."
 msgstr ""
 
-#: windows-nat.c:2694
+#: windows-nat.c:2711
 msgid "Show creation of new console when creating child process."
 msgstr ""
 
-#: windows-nat.c:2700
+#: windows-nat.c:2717
 msgid "Set creation of new group when creating child process."
 msgstr ""
 
-#: windows-nat.c:2701
+#: windows-nat.c:2718
 msgid "Show creation of new group when creating child process."
 msgstr ""
 
-#: windows-nat.c:2707
+#: windows-nat.c:2724
 msgid "Set whether to display execution in child process."
 msgstr ""
 
-#: windows-nat.c:2708
+#: windows-nat.c:2725
 msgid "Show whether to display execution in child process."
 msgstr ""
 
-#: windows-nat.c:2714
+#: windows-nat.c:2731
 msgid "Set whether to display kernel events in child process."
 msgstr ""
 
-#: windows-nat.c:2715
+#: windows-nat.c:2732
 msgid "Show whether to display kernel events in child process."
 msgstr ""
 
-#: windows-nat.c:2721
+#: windows-nat.c:2738
 msgid "Set whether to display memory accesses in child process."
 msgstr ""
 
-#: windows-nat.c:2722
+#: windows-nat.c:2739
 msgid "Show whether to display memory accesses in child process."
 msgstr ""
 
-#: windows-nat.c:2729
+#: windows-nat.c:2746
 msgid "Set whether to display kernel exceptions in child process."
 msgstr ""
 
-#: windows-nat.c:2730
+#: windows-nat.c:2747
 msgid "Show whether to display kernel exceptions in child process."
 msgstr ""
 
-#: windows-nat.c:2739
+#: windows-nat.c:2756
 msgid "Display selectors infos."
 msgstr ""
 
-#: windows-nat.c:2755
+#: windows-nat.c:2772
 #, possible-c-format
 msgid "Invalid register %d in cygwin_set_dr.\n"
 msgstr ""
 
-#: windows-nat.c:2842
+#: windows-nat.c:2859
 #, possible-c-format
 msgid "obsolete '%s' found. Rename to '%s'."
 msgstr ""
 
 #. This will probably fail on Windows 9x/Me.  Let the user know
 #. that we're missing some functionality.
-#: windows-nat.c:2973
+#: windows-nat.c:2990
 msgid ""
 "cannot automatically find executable file or library to read symbols.\n"
 "Use \"file\" or \"dll\" command to load executable/libraries directly."
diff --git a/gdb/python/py-linetable.c b/gdb/python/py-linetable.c
index e83d46d..8b5362b 100644
--- a/gdb/python/py-linetable.c
+++ b/gdb/python/py-linetable.c
@@ -168,7 +168,7 @@ static PyObject *
 ltpy_get_pcs_for_line (PyObject *self, PyObject *args)
 {
   struct symtab *symtab;
-  int py_line;
+  gdb_py_longest py_line;
   struct linetable_entry *best_entry = NULL;
   linetable_entry_object *result;
   VEC (CORE_ADDR) *pcs = NULL;
@@ -200,7 +200,7 @@ static PyObject *
 ltpy_has_line (PyObject *self, PyObject *args)
 {
   struct symtab *symtab;
-  int py_line;
+  gdb_py_longest py_line;
   int index;
 
   LTPY_REQUIRE_VALID (self, symtab);
diff --git a/gdb/target.c b/gdb/target.c
index 42a8741..a8eeace 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -1418,6 +1418,23 @@ raw_memory_xfer_partial (struct target_ops *ops, void *readbuf,
     }
   while (ops != NULL);
 
+  /* The cache works at the raw memory level.  Make sure the cache
+     gets updated with raw contents no matter what kind of memory
+     object was originally being written.  Note we do write-through
+     first, so that if it fails, we don't write to the cache contents
+     that never made it to the target.  */
+  if (writebuf != NULL
+      && !ptid_equal (inferior_ptid, null_ptid)
+      && target_dcache_init_p ()
+      && (stack_cache_enabled_p () || code_cache_enabled_p ()))
+    {
+      DCACHE *dcache = target_dcache_get ();
+
+      /* Note that writing to an area of memory which wasn't present
+	 in the cache doesn't cause it to be loaded in.  */
+      dcache_update (dcache, res, memaddr, writebuf, len);
+    }
+
   return res;
 }
 
@@ -1565,6 +1582,7 @@ memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
     inf = NULL;
 
   if (inf != NULL
+      && readbuf != NULL
       /* The dcache reads whole cache lines; that doesn't play well
 	 with reading from a trace buffer, because reading outside of
 	 the collected memory range fails.  */
@@ -1575,18 +1593,8 @@ memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
     {
       DCACHE *dcache = target_dcache_get_or_init ();
 
-      if (readbuf != NULL)
-	res = dcache_xfer_memory (ops, dcache, memaddr, readbuf, reg_len, 0);
-      else
-	/* FIXME drow/2006-08-09: If we're going to preserve const
-	   correctness dcache_xfer_memory should take readbuf and
-	   writebuf.  */
-	res = dcache_xfer_memory (ops, dcache, memaddr, (void *) writebuf,
-				  reg_len, 1);
-      if (res <= 0)
-	return -1;
-      else
-	return res;
+      return dcache_read_memory_partial (ops, dcache, memaddr, readbuf,
+					 reg_len);
     }
 
   /* If none of those methods found the memory we wanted, fall back
@@ -1597,23 +1605,6 @@ memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
      object which can be read from more than one valid target.  */
   res = raw_memory_xfer_partial (ops, readbuf, writebuf, memaddr, reg_len);
 
-  /* Make sure the cache gets updated no matter what - if we are writing
-     to the stack.  Even if this write is not tagged as such, we still need
-     to update the cache.  */
-
-  if (res > 0
-      && inf != NULL
-      && writebuf != NULL
-      && target_dcache_init_p ()
-      && !region->attrib.cache
-      && ((stack_cache_enabled_p () && object != TARGET_OBJECT_STACK_MEMORY)
-	  || (code_cache_enabled_p () && object != TARGET_OBJECT_CODE_MEMORY)))
-    {
-      DCACHE *dcache = target_dcache_get ();
-
-      dcache_update (dcache, memaddr, (void *) writebuf, res);
-    }
-
   /* If we still haven't got anything, return the last error.  We
      give up.  */
   return res;
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index d7eaa39..ecf8ad3 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,30 @@
+2014-03-05  Pedro Alves  <palves at redhat.com>
+
+	PR gdb/16575
+	* gdb.base/breakpoint-shadow.exp (compare_disassembly): New
+	procedure.
+	(top level): Adjust to use it.  Add tests that exercise breakpoint
+	interaction with the code-cache.
+
+2014-02-26  Pedro Alves  <pedro at codesourcery.com>
+	    Pedro Alves  <palves at redhat.com>
+
+	PR breakpoints/16292
+	* gdb.threads/signal-while-stepping-over-bp-other-thread.c: New
+	file.
+	* gdb.threads/signal-while-stepping-over-bp-other-thread.exp: New
+	file.
+
+2014-02-25  Jan Kratochvil  <jan.kratochvil at redhat.com>
+
+	PR gdb/16626
+	* gdb.base/auto-load-script: New file.
+	* gdb.base/auto-load.c: New file.
+	* gdb.base/auto-load.exp: New file.
+
+	PR gdb/16626
+	* gdb.base/auto-load.exp: Fix out-of-srctree run.
+
 2014-02-05  Yao Qi  <yao at codesourcery.com>
 
 	* gdb.trace/report.exp (use_collected_data): Test the output
diff --git a/gdb/testsuite/gdb.base/auto-load-script b/gdb/testsuite/gdb.base/auto-load-script
new file mode 100644
index 0000000..d02bd1a
--- /dev/null
+++ b/gdb/testsuite/gdb.base/auto-load-script
@@ -0,0 +1,17 @@
+# Copyright 2014 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+echo script_loaded\n
+set $script_loaded=42
diff --git a/gdb/testsuite/gdb.base/auto-load.c b/gdb/testsuite/gdb.base/auto-load.c
new file mode 100644
index 0000000..4b94803
--- /dev/null
+++ b/gdb/testsuite/gdb.base/auto-load.c
@@ -0,0 +1,22 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2014 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+int
+main (void)
+{
+  return 0;
+}
diff --git a/gdb/testsuite/gdb.base/auto-load.exp b/gdb/testsuite/gdb.base/auto-load.exp
new file mode 100644
index 0000000..d0e93f0
--- /dev/null
+++ b/gdb/testsuite/gdb.base/auto-load.exp
@@ -0,0 +1,41 @@
+# Copyright 2014 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+standard_testfile
+
+if [is_remote host] {
+    return 0
+}
+
+set targetdir "${binfile}.dir"
+set sourcescript "${srcdir}/${subdir}/${testfile}-script"
+set targetscriptdir "${targetdir}/[file dirname ${binfile}]"
+set targetscript "${targetscriptdir}/${testfile}-gdb.gdb"
+
+remote_exec host "rm -rf ${targetdir}"
+
+if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
+    return -1
+}
+
+remote_exec host "mkdir -p ${targetscriptdir}"
+remote_exec host "cp ${sourcescript} ${targetscript}"
+
+gdb_test_no_output "set auto-load scripts-directory ${targetdir}" "set auto-load scripts-directory"
+gdb_test_no_output "set auto-load safe-path ${targetscript}" "set auto-load safe-path"
+
+gdb_load ${binfile}
+
+gdb_test {print $script_loaded} " = 42"
diff --git a/gdb/testsuite/gdb.base/breakpoint-shadow.exp b/gdb/testsuite/gdb.base/breakpoint-shadow.exp
index 74f7c8f..1414ec0 100644
--- a/gdb/testsuite/gdb.base/breakpoint-shadow.exp
+++ b/gdb/testsuite/gdb.base/breakpoint-shadow.exp
@@ -44,14 +44,36 @@ gdb_test_multiple "disass main" $test {
 gdb_test "b [gdb_get_line_number "break-first"]" "Breakpoint \[0-9\] at .*" "First breakpoint placed"
 gdb_test "b [gdb_get_line_number "break-second"]" "Breakpoint \[0-9\] at .*" "Second breakpoint placed"
 
-set test "disassembly with breakpoints"
-gdb_test_multiple "disass main" $test {
-    -re $match {
-    	set got $expect_out(1,string)
-	if [string equal -nocase $orig $got] {
-	    pass $test
-	} else {
-	    fail $test
+# Disassemble main, and compare the output to the original output
+# before breakpoints were inserted.  TEST is used as test message.
+
+proc test_disassembly {test} {
+    global match orig
+
+    gdb_test_multiple "disass main" $test {
+	-re $match {
+	    set got $expect_out(1,string)
+	    if [string equal -nocase $orig $got] {
+		pass $test
+	    } else {
+		fail $test
+	    }
 	}
     }
 }
+
+test_disassembly "disassembly with breakpoints"
+
+# Now check the interaction between the code cache and breakpoint
+# always-inserted mode.
+
+# Recreate the code cache when breakpoints are already inserted.
+gdb_test_no_output "set code-cache off"
+gdb_test_no_output "set code-cache on"
+
+test_disassembly "disassembly with breakpoints, fresh code cache"
+
+# Delete breakpoints.  This should update the code cache as well.
+delete_breakpoints
+
+test_disassembly "disassembly without breakpoints, no stale breakpoints"
diff --git a/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.c b/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.c
new file mode 100644
index 0000000..a4634f2
--- /dev/null
+++ b/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.c
@@ -0,0 +1,145 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2009-2014 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include <pthread.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <signal.h>
+
+unsigned int args[2];
+
+pid_t pid;
+pthread_barrier_t barrier;
+pthread_t child_thread_2, child_thread_3;
+
+void
+handler (int signo)
+{
+  /* so that thread 3 is sure to run, in case the bug is present.  */
+  usleep (10);
+}
+
+void
+callme (void)
+{
+}
+
+void
+block_signals (void)
+{
+  sigset_t mask;
+
+  sigfillset (&mask);
+  sigprocmask (SIG_BLOCK, &mask, NULL);
+}
+
+void
+unblock_signals (void)
+{
+  sigset_t mask;
+
+  sigfillset (&mask);
+  sigprocmask (SIG_UNBLOCK, &mask, NULL);
+}
+
+void *
+child_function_3 (void *arg)
+{
+  int my_number =  (long) arg;
+  volatile int *myp = (int *) &args[my_number];
+
+  pthread_barrier_wait (&barrier);
+
+  while (*myp > 0)
+    {
+      (*myp) ++; /* set breakpoint child_two here */
+      callme ();
+    }
+
+  pthread_exit (NULL);
+}
+
+void *
+child_function_2 (void *arg)
+{
+  int my_number =  (long) arg;
+  volatile int *myp = (int *) &args[my_number];
+
+  unblock_signals ();
+
+  pthread_barrier_wait (&barrier);
+
+  while (*myp > 0)
+    {
+      (*myp) ++;
+      callme (); /* set breakpoint child_one here */
+    }
+
+  *myp = 1;
+  while (*myp > 0)
+    {
+      (*myp) ++;
+      callme ();
+    }
+
+  pthread_exit (NULL);
+}
+
+
+int
+main ()
+{
+  int res;
+  long i;
+
+  /* Block signals in all threads but one, so that we're sure which
+     thread gets the signal we send from the command line.  */
+  block_signals ();
+
+  signal (SIGUSR1, handler);
+
+  /* Call these early so that PLTs for these are resolved soon,
+     instead of in the threads.  RTLD_NOW should work as well.  */
+  usleep (0);
+  pthread_barrier_init (&barrier, NULL, 1);
+  pthread_barrier_wait (&barrier);
+
+  pthread_barrier_init (&barrier, NULL, 2);
+
+  /* The test uses this global to know where to send the signal
+     to.  */
+  pid = getpid ();
+
+  i = 0;
+  args[i] = 1;
+  res = pthread_create (&child_thread_2,
+			NULL, child_function_2, (void *) i);
+  pthread_barrier_wait (&barrier);
+  callme (); /* set wait-thread-2 breakpoint here */
+
+  i = 1;
+  args[i] = 1;
+  res = pthread_create (&child_thread_3,
+			NULL, child_function_3, (void *) i);
+  pthread_barrier_wait (&barrier);
+  callme (); /* set wait-thread-3 breakpoint here */
+
+  pthread_join (child_thread_2, NULL);
+  pthread_join (child_thread_3, NULL);
+
+  exit(EXIT_SUCCESS);
+}
diff --git a/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.exp b/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.exp
new file mode 100644
index 0000000..6b93d9c
--- /dev/null
+++ b/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.exp
@@ -0,0 +1,120 @@
+# Copyright (C) 2011-2014 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# Test that GDB doesn't inadvertently resume the stepped thread when a
+# signal arrives while stepping over the breakpoint that last caused a
+# stop, when the thread that hit that breakpoint is not the stepped
+# thread.
+
+standard_testfile
+set executable ${testfile}
+
+if [target_info exists gdb,nosignals] {
+    verbose "Skipping ${testfile}.exp because of nosignals."
+    return -1
+}
+
+# Test uses host "kill".
+if { [is_remote target] } {
+    return -1
+}
+
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
+	 executable [list debug "incdir=${objdir}"]] != "" } {
+    return -1
+}
+
+proc get_value {var test} {
+    global expect_out
+    global gdb_prompt
+    global decimal
+
+    set value -1
+    gdb_test_multiple "print $var" "$test" {
+	-re ".*= ($decimal).*\r\n$gdb_prompt $" {
+	    set value $expect_out(1,string)
+	    pass "$test"
+        }
+    }
+    return ${value}
+}
+
+# Start with a fresh gdb.
+
+clean_restart $executable
+
+if ![runto_main] {
+    return -1
+}
+
+gdb_breakpoint [gdb_get_line_number "set wait-thread-2 breakpoint here"]
+gdb_continue_to_breakpoint "run to wait-thread-2 breakpoint"
+gdb_test "info threads" "" "info threads with thread 2"
+
+gdb_breakpoint [gdb_get_line_number "set wait-thread-3 breakpoint here"]
+gdb_continue_to_breakpoint "run to breakpoint"
+gdb_test "info threads" "" "info threads with thread 3"
+
+set testpid [get_value "pid" "get pid of inferior"]
+
+gdb_test "set scheduler-locking on"
+
+gdb_breakpoint [gdb_get_line_number "set breakpoint child_two here"]
+gdb_breakpoint [gdb_get_line_number "set breakpoint child_one here"]
+
+gdb_test "thread 3" "" "switch to thread 3 to run to its breakpoint"
+gdb_continue_to_breakpoint "run to breakpoint in thread 3"
+
+gdb_test "thread 2" "" "switch to thread 2 to run to its breakpoint"
+gdb_continue_to_breakpoint "run to breakpoint in thread 2"
+
+delete_breakpoints
+
+gdb_test "b *\$pc" "" "set breakpoint to be stepped over"
+# Make sure the first loop breaks without hitting the breakpoint
+# again.
+gdb_test "p *myp = 0" " = 0" "force loop break in thread 2"
+
+# We want "print" to make sure the target reports the signal to the
+# core.
+gdb_test "handle SIGUSR1 print nostop pass" "" ""
+
+# Queue a signal in thread 2.
+remote_exec host "kill -SIGUSR1 ${testpid}"
+
+gdb_test "thread 3" "" "switch to thread 3 for stepping"
+set my_number [get_value "my_number" "get my_number"]
+set cnt_before [get_value "args\[$my_number\]" "get count before step"]
+gdb_test "set scheduler-locking off"
+
+# Make sure we're exercising the paths we want to.
+gdb_test "set debug infrun 1"
+
+gdb_test \
+    "step" \
+    ".*prepare_to_proceed \\(step=1\\), switched to.*signal arrived while stepping over breakpoint.*switching back to stepped thread.*stepped to a different line.*callme.*" \
+    "step"
+
+set cnt_after [get_value "args\[$my_number\]" "get count after step"]
+
+# Test that GDB doesn't inadvertently resume the stepped thread when a
+# signal arrives while stepping over a breakpoint in another thread.
+
+set test "stepped thread under control"
+if { $cnt_before + 1 == $cnt_after } {
+    pass $test
+} else {
+    fail $test
+}
diff --git a/gdb/version.in b/gdb/version.in
index 25b629b..5942a0d 100644
--- a/gdb/version.in
+++ b/gdb/version.in
@@ -1 +1 @@
-7.7
+7.7.1
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 6cd2c46..4fa07bd 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -310,12 +310,18 @@ thread_rec (DWORD id, int get_context)
 		  {
 		    DWORD err = GetLastError ();
 
-		    warning (_("SuspendThread (tid=0x%x) failed."
-			       " (winerr %u)"),
-			     (unsigned) id, (unsigned) err);
-		    return NULL;
+		    /* We get Access Denied (5) when trying to suspend
+		       threads that Windows started on behalf of the
+		       debuggee, usually when those threads are just
+		       about to exit.  */
+		    if (err != ERROR_ACCESS_DENIED)
+		      warning (_("SuspendThread (tid=0x%x) failed."
+				 " (winerr %u)"),
+			       (unsigned) id, (unsigned) err);
+		    th->suspended = -1;
 		  }
-		th->suspended = 1;
+		else
+		  th->suspended = 1;
 	      }
 	    else if (get_context < 0)
 	      th->suspended = -1;
@@ -445,7 +451,7 @@ do_windows_fetch_inferior_registers (struct regcache *regcache, int r)
 	{
 	  thread_info *th = current_thread;
 	  th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
-	  GetThreadContext (th->h, &th->context);
+	  CHECK (GetThreadContext (th->h, &th->context));
 	  /* Copy dr values from that thread.
 	     But only if there were not modified since last stop.
 	     PR gdb/2388 */
@@ -1266,10 +1272,12 @@ handle_exception (struct target_waitstatus *ourstatus)
   return 1;
 }
 
-/* Resume all artificially suspended threads if we are continuing
-   execution.  */
+/* Resume thread specified by ID, or all artificially suspended
+   threads, if we are continuing execution.  KILLED non-zero means we
+   have killed the inferior, so we should ignore weird errors due to
+   threads shutting down.  */
 static BOOL
-windows_continue (DWORD continue_status, int id)
+windows_continue (DWORD continue_status, int id, int killed)
 {
   int i;
   thread_info *th;
@@ -1297,7 +1305,16 @@ windows_continue (DWORD continue_status, int id)
 	  }
 	if (th->context.ContextFlags)
 	  {
-	    CHECK (SetThreadContext (th->h, &th->context));
+	    DWORD ec = 0;
+
+	    if (GetExitCodeThread (th->h, &ec)
+		&& ec == STILL_ACTIVE)
+	      {
+		BOOL status = SetThreadContext (th->h, &th->context);
+
+		if (!killed)
+		  CHECK (status);
+	      }
 	    th->context.ContextFlags = 0;
 	  }
 	if (th->suspended > 0)
@@ -1425,9 +1442,9 @@ windows_resume (struct target_ops *ops,
      Otherwise complain.  */
 
   if (resume_all)
-    windows_continue (continue_status, -1);
+    windows_continue (continue_status, -1, 0);
   else
-    windows_continue (continue_status, ptid_get_tid (ptid));
+    windows_continue (continue_status, ptid_get_tid (ptid), 0);
 }
 
 /* Ctrl-C handler used when the inferior is not run in the same console.  The
@@ -1645,7 +1662,7 @@ get_windows_debug_event (struct target_ops *ops,
       if (continue_status == -1)
 	windows_resume (ops, minus_one_ptid, 0, 1);
       else
-	CHECK (windows_continue (continue_status, -1));
+	CHECK (windows_continue (continue_status, -1, 0));
     }
   else
     {
@@ -2382,13 +2399,13 @@ windows_create_inferior (struct target_ops *ops, char *exec_file,
 
   do_initial_windows_stuff (ops, pi.dwProcessId, 0);
 
-  /* windows_continue (DBG_CONTINUE, -1); */
+  /* windows_continue (DBG_CONTINUE, -1, 0); */
 }
 
 static void
 windows_mourn_inferior (struct target_ops *ops)
 {
-  (void) windows_continue (DBG_CONTINUE, -1);
+  (void) windows_continue (DBG_CONTINUE, -1, 0);
   i386_cleanup_dregs();
   if (open_process_used)
     {
@@ -2456,7 +2473,7 @@ windows_kill_inferior (struct target_ops *ops)
 
   for (;;)
     {
-      if (!windows_continue (DBG_CONTINUE, -1))
+      if (!windows_continue (DBG_CONTINUE, -1, 1))
 	break;
       if (!WaitForDebugEvent (&current_event, INFINITE))
 	break;
diff --git a/md5.sum b/md5.sum
index 9ce3725..00675cc 100644
--- a/md5.sum
+++ b/md5.sum
@@ -93,7 +93,7 @@ c33e7b476fff49257bec843b4b756e64  bfd/coff-i960.c
 9ac71375350838903d4e2ea5e273328a  bfd/pc532-mach.c
 bff5cefe7a6dca2fb2cac08f4f44f3dd  bfd/elf32-i386.c
 b50493dbeeb6a6c72d74c195d4334bf9  bfd/cpu-xgate.c
-3891f546135da051bf92c4366687c79b  bfd/section.c
+638f1ae0e9e474e96973222f235d05ca  bfd/section.c
 e24c26414c8cffc67b83fcb4bcfb2a55  bfd/elf32-tic6x.h
 a1e9a3c25fd579771da3e57df20efbdc  bfd/elf32-sh64.c
 7f7679ad0dc080844c3868739e9db1b0  bfd/MAINTAINERS
@@ -163,7 +163,7 @@ bd49f101cccf144e25059c613c931182  bfd/elf32-xgate.c
 3e40145c4c05424dab23bc65eb4c5753  bfd/elf-ifunc.c
 1c74bfe93f1fe779fe093320c36b4443  bfd/cpu-moxie.c
 6474afde93f8e964e3d6dddffde3c41e  bfd/ChangeLog-0001
-390127806fd49f3cbb7ad14ea2456202  bfd/rs6000-core.c
+1acae1a038a61e4486ec3f62e6d338fc  bfd/rs6000-core.c
 5bdcb0777ada79fecad6acd7f24e9623  bfd/cpu-m32c.c
 30bb118e27b056030ba33809380bd65b  bfd/cpu-rx.c
 0c2ce76ab285ecdbaeca2b307517268e  bfd/elfnn-aarch64.c
@@ -186,7 +186,7 @@ dd692bb9e8a6d38982c0cb78b8c14daa  bfd/elf-nacl.c
 b0682558ad69d3671cc55f83abebf32d  bfd/genlink.h
 25509065b1ee664694b3e5c37bb433e0  bfd/init.c
 61035a9ec1c8ace84fb7d95293f1437b  bfd/cpu-tilegx.c
-163620f024dd51b93258ffa380b67b11  bfd/ChangeLog
+557bd76544cc978b311ad2edf622385a  bfd/ChangeLog
 2260d5d5b17087621f4d22d664caca17  bfd/nlm-target.h
 2c65a22621d3101c1bd6b480a6987bb4  bfd/elf32-ppc.c
 a3d9b5e913108cded9ca9ccd0597756c  bfd/elf32-tilegx.c
@@ -195,7 +195,7 @@ bf0b3463ab0847d483c28446c7efea99  bfd/cpu-z8k.c
 140b65ea1bdd039c81067900b5124da8  bfd/elf32-pj.c
 325696a8a9e20f4bc7e62bd8bc702277  bfd/configure.com
 5cc2d4dfcaec81ddf7c88e00d48b7b01  bfd/elf32-xc16x.c
-0a020ae85f45619e7be78a32f07f13ff  bfd/bfd-in.h
+092dbbb4302cca17531be888d92813a8  bfd/bfd-in.h
 ea01dce96afa052c76fd823efca3f370  bfd/aout-target.h
 f7b33e7dcd153dc5e4a4905f65772e08  bfd/i386aout.c
 b00f7cb9262913124b87eee21a7532d1  bfd/elfxx-sparc.c
@@ -283,7 +283,7 @@ e3a11b8c38f8beb8cb380d2556b1fe88  bfd/nlm32-alpha.c
 e9765c7c89f2baeb3273a69fced434e1  bfd/linker.c
 c3e727bdfb7a73954c1f7ea914d5de0e  bfd/elf32-sh64-com.c
 546640a80c1b867a387381e1eee30607  bfd/cpu-iq2000.c
-b180737ba2abbeaae9d169a8fe4b9207  bfd/version.h
+a5e3c7e44ad41d94d9d4b942471925a5  bfd/version.h
 95d88c934f24ee90233fcbdc7fb43423  bfd/elf32-sh-symbian.c
 da142f9c2f88b9c7588bc32183dad968  bfd/elf-m10200.c
 fcf3f7fff3f72094447832681d4e23e3  bfd/elf64-tilegx.h
@@ -348,7 +348,7 @@ a9c5cd8e9c43829ec43055139e9684ed  bfd/coff-apollo.c
 80da78edc286647ccdfe7ac1beb7847f  bfd/cpu-alpha.c
 58a3fb1e054b540ef5c1329799b824bb  bfd/ChangeLog-2005
 93f032da48de60e018eddb5e7080efa4  bfd/elfxx-tilegx.h
-10804ec8277e65abd79022a18068f84a  bfd/bfd.c
+280dbf301cc98855cd36c878799a4584  bfd/bfd.c
 7bfeb177a026abccd2614544aea7bf69  bfd/cpu-cr16c.c
 d26a1e4adc9f59c9f83fd37a4dfcbb1e  bfd/cpu-aarch64.c
 e10350123329061cf3ae2dd4bacf141c  bfd/configure.host
@@ -362,7 +362,7 @@ d07092c82681bbe409474bac57f06843  bfd/config.bfd
 14daf53f44846e0adf24caa24bf52257  bfd/cpu-ns32k.c
 7944adcc0e356862a28598769de73fc4  bfd/cpu-tic54x.c
 546e2d7c5c9da674ed7600fa87823b1c  bfd/cpu-lm32.c
-bb3d6835e31501e321cd2d8bff767f6b  bfd/cache.c
+89cd43d235de68b8c6fc8af59a3e8586  bfd/cache.c
 7d0efdbb284f00939c3d7f6de24235da  bfd/coff-z8k.c
 973084456c9fa330b3b39bd3f1055ee4  bfd/cpu-xtensa.c
 b7cb85d00b253b2fe42cea4a8a7640f9  bfd/elf32-xtensa.c
@@ -385,15 +385,15 @@ e65fcc0e9242ddf2063b573b70bdddbd  bfd/nlm32-sparc.c
 d9f7fec3dee69a6c3084e6d4cfd88371  bfd/doc/cache.texi
 d7a37304ccd7b245f93df4be02797477  bfd/doc/proto.str
 5b09719958f9cc1430c13ac46f2339c9  bfd/doc/bfdint.texi
-4e7d1b90700096087c7f85f2b33467b0  bfd/doc/bfdt.texi
+73fb54bccbe394235ae4b770ad285169  bfd/doc/bfdt.texi
 87862cb3a4d559ae6f8837193037a762  bfd/doc/targets.texi
 58f9e78e71f2d034a79e172899e792f6  bfd/doc/mmo.texi
 2b2af4fc0532d1286cd9293d8bda2f1d  bfd/doc/syms.texi
 f2a35ae681f6ea06b3f73c7a23a28163  bfd/doc/chew.c
 65d07f43470f76ee35cc0104a40bba62  bfd/doc/bfd.texinfo
 71ed03090263856b9b82dcd682df2c19  bfd/doc/ChangeLog
-e11cfb66254ed5451e7edf713331747a  bfd/doc/bfdver.texi
-a376d2626be11d4e8aab25f553feca38  bfd/doc/bfd.info
+e756ddd0825dd68278c7887244f04d55  bfd/doc/bfdver.texi
+0fda17b5a30f020be4e6ec82c9454be6  bfd/doc/bfd.info
 072910d553f79906db69fa7c0e956bba  bfd/doc/fdl.texi
 7fd361850a5f96c0087b16241a4de6d5  bfd/doc/bfdsumm.texi
 51139f6af786e74446d01ec49807fc28  bfd/doc/elf.texi
@@ -407,7 +407,7 @@ d41d8cd98f00b204e9800998ecf8427e  bfd/doc/elfcode.texi
 6a1a507e85b4d8cee41c3defa9d24e6a  bfd/doc/opncls.texi
 7edf511939deb638e8291f264c4249e1  bfd/doc/bfdio.texi
 6f32bdfe0063cdb0c3aa73cceee3a1e1  bfd/doc/archive.texi
-04a07152780205865412e3ef222415f9  bfd/doc/section.texi
+caacf088de29d05e198c468432d127b2  bfd/doc/section.texi
 0fc22c68d543f8dc7cc4548a3fad3557  bfd/doc/libbfd.texi
 6dd9da257666139a061d6905349d9614  bfd/doc/core.texi
 8571ff0c1ad78f4460c4535fb10cac48  bfd/doc/Makefile.in
@@ -557,7 +557,7 @@ e84bc89f466a9d1d9299892dac70ddc6  bfd/elf32-bfin.c
 b02c183fdd2c8d15a1b6e6762e20e5fc  bfd/m68klinux.c
 f5b2082a5a1a29c38e706e3d9c0a8af7  bfd/coff-go32.c
 2cfd53095c676672fd9cfdf2d39f2f44  bfd/tekhex.c
-43005e7aab68c3a43d6ab84a4c28d989  bfd/bfd-in2.h
+e1375f1c96e996a5f55a238d7cf2e1ea  bfd/bfd-in2.h
 db369cf9b35a5d46abb160aa8bbf4145  bfd/elf32-tilepro.c
 8e875336f2874e801daca2e0ce78bb22  bfd/coff-sparc.c
 cf952c320bd31f09566ef5512192907b  bfd/pei-arm.c
@@ -755,7 +755,7 @@ c350827ae3cb69760e8e91598e8e6dc0  gdb/i386-nat.h
 50b03d22794b76df053667062b99bde2  gdb/sparc-sol2-nat.c
 354cbe95c70c88697011debe2d034fee  gdb/gnu-nat.h
 830a61a4b9cd4dfb089abc36c750cddf  gdb/serial.c
-7c0a7cecab6f5125ac995252aace9b33  gdb/infrun.c
+35aad96d79ff372b50874f5447312718  gdb/infrun.c
 dc95e9b0ddb41416d9fbb2273170e006  gdb/monitor.h
 ad19160e8dd67e397c3fca20ea8b3453  gdb/dwarf2read.c
 66060ebf32b75aeeccb9c06ce599d418  gdb/amd64fbsd-nat.c
@@ -803,7 +803,7 @@ b651746fdfc39f9356f5a8aab538dfea  gdb/block.h
 18cd6ab578028383eb92571228c8f8e6  gdb/python/py-cmd.c
 ead8e6cd55f833d428b68144ee3b11fc  gdb/python/py-function.c
 41dc73f87400ac722da4be9477d0eadc  gdb/python/py-continueevent.c
-4c7502726fa6b135b5371ed789b87e6f  gdb/python/py-linetable.c
+c7cf76d517bc002c26287acec489dd9a  gdb/python/py-linetable.c
 472a1ecd7064576ed64598fc22862a99  gdb/python/py-finishbreakpoint.c
 718a36b43700bdb4fb7fdc6dad35085d  gdb/python/py-inferior.c
 96a70fa36e8d872384482ac518e18720  gdb/python/py-evtregistry.c
@@ -873,7 +873,7 @@ ad75ddecfecb5a114e46d94f57eac7eb  gdb/configure
 31fe08c7e03330b571268f06ee54b1c4  gdb/coffread.c
 9e255ba94dc111fcc573af935b464f3e  gdb/arm-tdep.h
 ebf64a3f08d112ef607af758fa337854  gdb/inf-loop.c
-d7b51a602243b2186cc471f23f3caac5  gdb/auto-load.c
+013712a548f34099e9f5769e7ea5bbd2  gdb/auto-load.c
 fd7b0fb712258d1fa8589cc2dd421daf  gdb/ctf.h
 10899c020b94f342c87c1e5bec49b0c0  gdb/dummy-frame.c
 b8b7753728ac44d9e95d81953320efcf  gdb/inf-ptrace.c
@@ -990,7 +990,7 @@ ee7592884fd086ff43e7cf0b0298df73  gdb/proc-service.c
 9507570ff03c81cf48645d8b2b243192  gdb/vax-nat.c
 e9073adfe0140b34cb4ad424772e4fcc  gdb/score-tdep.c
 e7d4a4de7112cdafd14f2d2128719210  gdb/p-valprint.c
-0c6cb62bf04050897f9560f2a2cde2b0  gdb/MAINTAINERS
+95c6bdfd4fc27305edd46c80fc722301  gdb/MAINTAINERS
 6c8ce6d488761d95eb2fa10c35fa0d61  gdb/m68kbsd-nat.c
 4305d8cc143b2eb0968b392a9e6caf1f  gdb/alphabsd-nat.c
 7a7b0a6d875f1a5badebf85367b3fb24  gdb/sparc-ravenscar-thread.h
@@ -1016,7 +1016,7 @@ c4f27bf498495a200bdd82f356fb5e62  gdb/symtab.c
 8eff99035a942ae675cc6c7f3ac8d053  gdb/typeprint.c
 d67aa574e3ada6b61b701a51f0b049a5  gdb/bsd-kvm.c
 bd8640dd04668bbb178f2a2520cb9a4b  gdb/target-memory.c
-f3ba054c93dbc83a7186ba05390b5f12  gdb/avr-tdep.c
+55d21644100fcaa390e878eaec39a36f  gdb/avr-tdep.c
 32d6f9c8f9471270d10bbdd2645f0820  gdb/gcore.c
 16384fb34ba55b9955bb4ff9a396c8e0  gdb/features/mips64-cp0.xml
 e02f6dd77e5775afccf160656dddba41  gdb/features/arm-with-m-fpa-layout.xml
@@ -1264,7 +1264,7 @@ d46847539ab120d3a557e441f6069072  gdb/amd64obsd-tdep.c
 ca568d3af7d6ae508a2c0179ede9bbcf  gdb/gdb.h
 c8923a078f6531cbdd72d6d98a132d31  gdb/dfp.c
 7e2adc52e509bdae9d333f4782c23c2c  gdb/ppcobsd-tdep.c
-5a63a02d9580329864532c08f4c5d16c  gdb/po/gdb.pot
+9cbc57e424e9db9fa2ea095323137459  gdb/po/gdb.pot
 1851bff0653201a488dcae18dde7efad  gdb/po/gdbtext
 8e0007f6395e21d254d1ac539608c8f8  gdb/go-exp.c
 8b9b1aaa262d27476210b75f9c9b6cbb  gdb/dwarf2loc.c
@@ -1277,7 +1277,7 @@ afd520812ce095423aa9f55603b75fed  gdb/dink32-rom.c
 1e1c2c423f1413bf27e82eaac8cbecd3  gdb/inflow.c
 7e2616730c03776cf51b3a289782cc4b  gdb/i386-dicos-tdep.c
 32f5147fc89716698c88ccc74f5ae6fa  gdb/i386gnu-nat.c
-5592444ed03ba54f4c087fb6f5b4edc4  gdb/version.in
+9b61718a9b29c999d83042de4504ee06  gdb/version.in
 3a107fccd4ad682a20212c7c47817ab6  gdb/macrotab.h
 076f775ad2d40deda81f7be7da62ae76  gdb/posix-hdep.c
 ed3460c657770a83837a39f914a3c38b  gdb/solib-aix.h
@@ -1407,13 +1407,13 @@ ca585285eb7b591590c980ca5694ba0e  gdb/hppa-linux-nat.c
 efa1b8401486cc3519f688ebd1c89c0d  gdb/spu-tdep.h
 7901bae4507272bff063ad44a07ac721  gdb/dwarf2-frame.h
 ea70d216e42f194b910eb441f3fa5b72  gdb/amd64-sol2-tdep.c
-1e53627bae8bae2d7b496f41d50f5291  gdb/ChangeLog
+fb264e371df3f1c2fbf1b86dd30bf7b5  gdb/ChangeLog
 16dc208205d75892c640e632ff307ff0  gdb/arm-linux-nat.c
 404305970676c09e77dd7cb3b748566b  gdb/sparc-nat.h
 1ee1dc6fffdd147747fd45623bb35225  gdb/armnbsd-tdep.c
 5a59ca31efc91ff2fd45527fc90d0779  gdb/solib-spu.c
 e0eaf56005381b28e172ec7b1ad88497  gdb/cp-support.h
-9aad86371744732bb66f2c2004d538d7  gdb/windows-nat.c
+f16ee91360720cf7105cd5d83716ef4e  gdb/windows-nat.c
 9f1bdffe26dc71b3509bf069abcfc64b  gdb/main.c
 d52d6e6d5494cfd13854379f701dd9b5  gdb/nbsd-tdep.c
 710b368ba5c704a4c9b86d0212448c9d  gdb/linespec.c
@@ -1788,7 +1788,7 @@ ff865252591f37164ea594c888c17964  gdb/interps.c
 b5d5a9a42a0955ff4d97209a40a706bc  gdb/xstormy16-tdep.c
 e6d9d892be2b5c9950ce88a416d2b191  gdb/ser-unix.h
 cca59b1562e25e48063d9b9d15c8a0bb  gdb/jv-exp.c
-0293698c2f794fd8a7f9cab3290f19ed  gdb/dcache.c
+0e48f58b6f09b8e24c48683b75c5ddc4  gdb/dcache.c
 0233cc263565b923eeb92a4830942ce9  gdb/vax-tdep.c
 8767b1bd22d34c9f77e8a2ab83526ff6  gdb/ppc-sysv-tdep.c
 29d0cbde19dd75d8a06e93e53e15ed0c  gdb/completer.c
@@ -2856,7 +2856,7 @@ e4708e4b23e4e6ddd07c7245736d37b3  gdb/testsuite/config/h8300.exp
 1e63d632aebde719ad143f95a1613d44  gdb/testsuite/config/unix.exp
 50f6a13c0fd1efa871f0b7c0dc273e0d  gdb/testsuite/config/m32r-stub.exp
 fa9ec353aaf2a8f6ebaf916205906049  gdb/testsuite/config/default.exp
-6a07b6870f5f40abf4228540dab71132  gdb/testsuite/ChangeLog
+4b9d1ff654f8b7ed745816fe7d4d09c6  gdb/testsuite/ChangeLog
 3bf59fe4ee125fed62e361a4235f302d  gdb/testsuite/gdb.go/integers.go
 ea5ff936bcbd68cbc91cb8771230db91  gdb/testsuite/gdb.go/strings.go
 42285908fe9cffdad5e7e8c08d189f9e  gdb/testsuite/gdb.go/methods.exp
@@ -3433,6 +3433,7 @@ fe778e4ca9af81e067b376479c5f876d  gdb/testsuite/gdb.base/execd-prog.c
 9bb628d1233b58397949f35c005c7164  gdb/testsuite/gdb.base/random-signal.exp
 14ef835164b7090f513b27bc74a11cca  gdb/testsuite/gdb.base/disp-step-syscall.exp
 15b94a2810ce675f9e359a347b700382  gdb/testsuite/gdb.base/argv0-symlink.exp
+a1068c7fe8664cbe7fd82e3f011239c9  gdb/testsuite/gdb.base/auto-load.c
 55143311aaa933db91b23d2b9900c9e7  gdb/testsuite/gdb.base/annota3.c
 87cc97500a902f79ea1351f8bb0f7b47  gdb/testsuite/gdb.base/info-target.exp
 0cb031a7e7dc09f9db15197f07176655  gdb/testsuite/gdb.base/info-fun.exp
@@ -3508,6 +3509,7 @@ d299dd9a4cbedf5a92eada97f1d944c1  gdb/testsuite/gdb.base/solib-display-main.c
 3ed557fc791da5b82f32ee1d95f4a31c  gdb/testsuite/gdb.base/dump.exp
 a02acebb010a9aebf38dd1262c73e6fc  gdb/testsuite/gdb.base/ctxobj.exp
 810a04bc0c50752c6664032a6176ce6c  gdb/testsuite/gdb.base/info-shared-solib1.c
+f0401d4a401e48ecabc7716942278cc6  gdb/testsuite/gdb.base/auto-load-script
 bece708edda16f2794a94d57898b2da9  gdb/testsuite/gdb.base/commands.exp
 40ea0b637bee041d22c72ad5ce356d17  gdb/testsuite/gdb.base/attach2.c
 5c53217539317f767797f308fa2d2450  gdb/testsuite/gdb.base/print-file-var-lib2.c
@@ -3917,7 +3919,7 @@ ef8cdf869a09d1411c0be3d73841413e  gdb/testsuite/gdb.base/setshow.c
 820a7f175e6e83da237f87e2c5d74088  gdb/testsuite/gdb.base/break.exp
 b2ee495137691e70d3ad7c4aae6f2f22  gdb/testsuite/gdb.base/disasm-end-cu-1.c
 b4816e4b91e99aa3e905b5d44802e907  gdb/testsuite/gdb.base/spu.ld
-7be20c4b0c8c0e679fe4358e35e6b831  gdb/testsuite/gdb.base/breakpoint-shadow.exp
+e4a5459490946fb7a33114e06bc814bd  gdb/testsuite/gdb.base/breakpoint-shadow.exp
 0d6ef9d803f27a96e9756635d57c3939  gdb/testsuite/gdb.base/longest-types.c
 35ce0d1e8a6cc6a278649ec7464d8a1c  gdb/testsuite/gdb.base/d10vovly.c
 50d5cd12a173a5fbb0c89f3e1e4581d8  gdb/testsuite/gdb.base/gcore-relro.exp
@@ -3963,6 +3965,7 @@ ff8e162ed58d025c5e290a06c9aa30ab  gdb/testsuite/gdb.base/restore.exp
 51eb9b89892b516752e0aa20fd2e3818  gdb/testsuite/gdb.base/signull.exp
 6e8b1ebb505d77ac53cfaab60499a09d  gdb/testsuite/gdb.base/skip-solib-lib.c
 0dfb974a35473524ad9a4e81d1f319ad  gdb/testsuite/gdb.base/gnu_vector.c
+a06c8332ff4e84ff4c559c521adf8cce  gdb/testsuite/gdb.base/auto-load.exp
 8d3ddf4ea359b538d909ebda31f83b8f  gdb/testsuite/gdb.base/trace-commands.exp
 dc1c7b2d0d97de5e07f0046fca14d586  gdb/testsuite/gdb.base/macscp4.h
 91907e60647909daed2a097be0d47d27  gdb/testsuite/gdb.base/type-opaque-main.c
@@ -4365,12 +4368,14 @@ daba9799c8549458c9783ed546a03051  gdb/testsuite/gdb.threads/no-unwaited-for-left
 c5bd39c5b29f906164d3040f8e10a730  gdb/testsuite/gdb.threads/watchthreads2.exp
 1c7c3f475ff5763d3779825e29c8bcf3  gdb/testsuite/gdb.threads/manythreads.exp
 e706ebfe1b780e01050d61fb4fc654ef  gdb/testsuite/gdb.threads/print-threads.exp
+ec64e55141d583bd2b48cd9361bfde67  gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.exp
 d8f8b782a5bc6c1c8122861a1be9a062  gdb/testsuite/gdb.threads/corethreads.exp
 65afebe3bcb48182792b0c16b5796838  gdb/testsuite/gdb.threads/non-ldr-exc-3.exp
 a58389be21255b20dc2aa91107ae9520  gdb/testsuite/gdb.threads/create-fail.c
 dd7e048ba4d52b17979242914fa1312d  gdb/testsuite/gdb.threads/corethreads.c
 8fdd249775ceffe2b2bb9d1007db01e8  gdb/testsuite/gdb.threads/execl.exp
 7a2c4885bd5b64e65b71db9bf589ca1a  gdb/testsuite/gdb.threads/multi-create.exp
+3d62dbccacc2a334c6886ba79813d2f4  gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.c
 946d19bccefa54d0df3b39f74aadfd1d  gdb/testsuite/gdb.threads/ia64-sigill.exp
 63c9a72298d67e76ddc71e8a78ab3d68  gdb/testsuite/gdb.threads/watchpoint-fork.h
 c845000202b82a03c1626ae3b56d6869  gdb/testsuite/gdb.threads/bp_in_thread.exp
@@ -4498,31 +4503,31 @@ feb6b41b364f2afc2b8093d0ae2d4278  gdb/solib.c
 40d5a9165335a9512d647423ec4c4e1d  gdb/moxie-tdep.c
 5fc90173f374a3b462c578a5b6613e76  gdb/amd64-tdep.c
 e89051f69c9abf9baf2f9276fff8b109  gdb/macroexp.c
-5df4df15bf6f3765350c471a16f9a3c6  gdb/doc/gdbserver.1
+b1ce7438fd9dae4311d9a6f0dc7f7664  gdb/doc/gdbserver.1
 0a01a0d57ee6760b805e1e507efd14fa  gdb/doc/gdb.info-2
-528bcba85b53579e0c481261fca0f181  gdb/doc/gdb.info-5
+368a8e888d527af8f5699272de2a0701  gdb/doc/gdb.info-5
 9015134b8028aa4415bec5eea0c3d925  gdb/doc/gdb.info-4
 994065978669071f5e0a82de422596e2  gdb/doc/observer.texi
 e42729d6ac4bb241500d0e33d24a69a6  gdb/doc/ChangeLog
 d5d06eaf9b4d44aa442a4a281aa9aea4  gdb/doc/a4rc.sed
-6305d2ae333ae73be8bbc70b0684ea68  gdb/doc/gdb.info-1
+9d1ed6ad4db47804385626416051a652  gdb/doc/gdb.info-1
 8108dd8f906f2654fecc74958cf383db  gdb/doc/psrc.sed
 d39233c86ed6a6dc9e853ae6a11fe03e  gdb/doc/stack_frame.pdf
 8d169ff7e7d99dff9d951fa869f90fe2  gdb/doc/annotate.texinfo
 ab0fe311032294b952da80585b8b90e7  gdb/doc/fdl.texi
 6076d300a46651562d4ecd0604442414  gdb/doc/stack_frame.png
-0e266bd015d7c39f709fc33be3830d16  gdb/doc/gcore.1
+47beeaacf9f16d6196db50259be3f644  gdb/doc/gcore.1
 d18f5345c0efad2e1ea93d32fe5aa220  gdb/doc/agentexpr.texi
 73ec71cd3b2e7f61bc530f19d4b35056  gdb/doc/lpsrc.sed
 7bfdb0765c5d050d204fbb30aeeba0d8  gdb/doc/stack_frame.eps
 0e455dcf84caa950691bf7ba8c5741ad  gdb/doc/all-cfg.texi
 0ce6c0e21f178ab50efe511a07e2229a  gdb/doc/annotate.info
 d3beca78a6ced3dbd2ca6f00102f3e5d  gdb/doc/gdb.info-6
-9262fdfbfd4c525e4fa3fd38c2e6ec01  gdb/doc/gdb.1
-4aab686e0f1fc1d4534ec56ea1c71aed  gdb/doc/gdbinit.5
+8f718355f2f6a1b584ef12b5d2c74c3a  gdb/doc/gdb.1
+4e0a4d7bfd357690b82813d4c2ba04a9  gdb/doc/gdbinit.5
 bf96494e6e4d346175babd5ef9781882  gdb/doc/gpl.texi
 f44023a05ad33ffb8254965d32eef766  gdb/doc/refcard.tex
-f1cb6de90418ffafaa2516d10bece7a0  gdb/doc/gdb.info
+3e442f21b3e1c50b84c0138d500fbcbb  gdb/doc/gdb.info
 553b7fe1bf4b5d8b96fdb8cd83503de1  gdb/doc/stack_frame.svg
 f2037884ba0a0f4a8dd5363ccc973aca  gdb/doc/gdb.texinfo
 f2893d2988807ffbd3a87823b4b87f1a  gdb/doc/Makefile.in
@@ -4595,7 +4600,7 @@ ef7f67e5720cf7b193349f8687243947  gdb/stubs/m32r-stub.c
 5fae2f235bdac98328fc9da7a4b4b01d  gdb/stubs/ia64vms-stub.c
 ffc93e69a8813484cec63da022b68375  gdb/stubs/sh-stub.c
 d90ac312feb6560716bb616c2c770fb9  gdb/bsd-kvm.h
-9420b8f84d43efcd1a87d2a12b5e890f  gdb/dcache.h
+318722a7aee1f3fa64aac531eac284eb  gdb/dcache.h
 5cbff1f3c3de2abd63a44ab4e723f872  gdb/observer.c
 e46d3e5b47032cc9103b7f6c36d8d84e  gdb/amd64-nat.h
 d14e1f94693af6c18fff71dd48a0b56c  gdb/Makefile.in
@@ -4725,7 +4730,7 @@ c946d0b80d213a9eef7d2da1e16cc57b  gdb/bfin-tdep.c
 0632556e4e9f184017fb21ba04250eb9  gdb/memattr.c
 24b94c533f3b1df00748d6032d756533  gdb/inf-ttrace.h
 7d64d551fcf8b2be0064b79c5f749d98  gdb/disasm.c
-6ec7c7a0405aa83fbeefd3c894f9cf09  gdb/target.c
+b3c32081fbfec6e2084b530bdf2ab583  gdb/target.c
 614b080e900d72ffdd6b8d3d6a919067  gdb/demangle.c
 1ae3b001ce4665cfe6908c9511018626  gdb/linux-tdep.c
 0757bc6becdb634b53cb552121a33525  gdb/go-lang.c

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gdb/gdb-doc.git



More information about the Crosstoolchain-logs mailing list