This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH v6 0/2] enable target-async by default


This is version 6 of the patch series to enable target-async by
default.  Most of the series is now in.

There's actually a third patch this depends on, here:

  https://sourceware.org/ml/gdb-patches/2014-05/msg00590.html

As I had already posted it today, I figured moving it to the series
and posting it again would possibly confuse things.

Tested on x86_64 Fedora 20, with different permutations of target
async and mi async.  No regressions.

Pedro Alves (2):
  Make display_gdb_prompt CLI-only.
  enable target async by default; separate MI and target notions of
    async

 gdb/NEWS                                         | 31 ++++++++++
 gdb/cli/cli-interp.c                             | 31 ++++++----
 gdb/doc/gdb.texinfo                              | 54 +++++++++++------
 gdb/doc/observer.texi                            |  8 +++
 gdb/event-loop.c                                 |  6 +-
 gdb/event-top.c                                  |  5 --
 gdb/inf-loop.c                                   |  3 +-
 gdb/infcmd.c                                     |  6 +-
 gdb/inferior.h                                   |  7 +++
 gdb/infrun.c                                     |  3 +-
 gdb/interps.c                                    | 30 ++-------
 gdb/interps.h                                    |  5 +-
 gdb/mi/mi-interp.c                               | 61 ++++++++++++++-----
 gdb/mi/mi-main.c                                 | 77 +++++++++++++++++++++---
 gdb/mi/mi-main.h                                 |  4 ++
 gdb/target.c                                     | 25 ++++----
 gdb/target.h                                     |  3 +-
 gdb/testsuite/gdb.base/async-shell.exp           |  1 -
 gdb/testsuite/gdb.base/async.exp                 |  2 -
 gdb/testsuite/gdb.base/corefile.exp              | 17 +-----
 gdb/testsuite/gdb.base/dprintf-non-stop.exp      |  1 -
 gdb/testsuite/gdb.base/gdb-sigterm.exp           | 12 +---
 gdb/testsuite/gdb.base/inferior-died.exp         |  1 -
 gdb/testsuite/gdb.base/interrupt-noterm.exp      |  1 -
 gdb/testsuite/gdb.mi/mi-async.exp                |  2 +-
 gdb/testsuite/gdb.mi/mi-nonstop-exit.exp         |  2 +-
 gdb/testsuite/gdb.mi/mi-nonstop.exp              |  2 +-
 gdb/testsuite/gdb.mi/mi-ns-stale-regcache.exp    |  2 +-
 gdb/testsuite/gdb.mi/mi-nsintrall.exp            |  2 +-
 gdb/testsuite/gdb.mi/mi-nsmoribund.exp           |  2 +-
 gdb/testsuite/gdb.mi/mi-nsthrexec.exp            |  2 +-
 gdb/testsuite/gdb.mi/mi-watch-nonstop.exp        |  2 +-
 gdb/testsuite/gdb.multi/watchpoint-multi.exp     |  2 +-
 gdb/testsuite/gdb.python/py-evsignal.exp         |  1 -
 gdb/testsuite/gdb.python/py-evthreads.exp        |  1 -
 gdb/testsuite/gdb.python/py-prompt.exp           |  6 +-
 gdb/testsuite/gdb.reverse/break-precsave.exp     |  6 --
 gdb/testsuite/gdb.server/solib-list.exp          |  1 -
 gdb/testsuite/gdb.threads/thread-specific-bp.exp |  1 -
 gdb/testsuite/lib/mi-support.exp                 |  4 +-
 gdb/tui/tui-interp.c                             | 32 ++++++----
 41 files changed, 282 insertions(+), 182 deletions(-)

-- 
1.9.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]