~ubuntu-branches/debian/sid/gdb/sid

« back to all changes in this revision

Viewing changes to gdb/utils.h

  • Committer: Package Import Robot
  • Author(s): Héctor Orón Martínez, Samuel Bronson
  • Date: 2013-10-08 17:23:45 UTC
  • mfrom: (1.4.13)
  • Revision ID: package-import@ubuntu.com-20131008172345-jeqq67ftpxgq722r
Tags: 7.6.1-1
[ Samuel Bronson ]
* Imported Upstream version 7.6.1
  - GDB 7.6.1 provides the following fixes and improvements to GDB 7.6:
    * PR tdep/15420 (Cannot debug threaded programs on newer versions
      of x86-solaris - Solaris 10, Update 10 or later)
    * PR remote/15455 (QTro remote packet broken)
    * PR build/15476 (Build failure due to incomplete enum type in utils.h)
    * PR server/15594 (tls support in 64x32 x86 gdbserver doesn't extend
      address to 64 bit)
    * PR server/15075 (dprintf inteferes with "next")
    * PR server/15434 (dprintf uses a synchronous 'continue' even in
      non-stop mode)
    * PR tui/14880 (in split register layouts, up results in assertion
      failure in value.c)
    * PR c++/15519 (GDB 7.6 is 94x slower than GDB 7.5.1 using a certain
      core file)
    * PR gdb/15837 (GDB prints entry values for local variables)
    * PR gdb/15415 (gdb resolves symbolic links when passing argv[0])
    * PR cli/15603 (CTRL-C can no longer interrupt inferior)
    * PR gdb/15604 (gdbserver socket leak 7.5 regression)
* Backport ARM Linux `catch syscall' support from my upstream
  patch. (Closes: #709937)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define UTILS_H
23
23
 
24
24
#include "cleanups.h"
 
25
#include "exceptions.h"
25
26
 
26
27
extern void initialize_utils (void);
27
28
 
279
280
extern void fprintf_symbol_filtered (struct ui_file *, const char *,
280
281
                                     enum language, int);
281
282
 
282
 
enum errors;
283
283
extern void throw_perror_with_name (enum errors errcode, const char *string)
284
284
  ATTRIBUTE_NORETURN;
285
285
extern void perror_with_name (const char *) ATTRIBUTE_NORETURN;