public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] improve btrace enable error reporting
@ 2018-01-26 14:14 Markus Metzger
  2018-01-26 14:14 ` [PATCH v2 2/7] common: add scoped_mmap Markus Metzger
                   ` (7 more replies)
  0 siblings, 8 replies; 47+ messages in thread
From: Markus Metzger @ 2018-01-26 14:14 UTC (permalink / raw)
  To: gdb-patches

Recording may fail for a variety of reasons.  Improve the error
messages by stating more clearly what operation failed and try to give
a reason why it failed.

Further align the error messages for native and remote debugging.

Changes to v1:
  - move helper classes into gdb/common/
  - add unit tests for helpers
  - simplify helpers

Markus Metzger (7):
  common: add scoped_fd
  common: add scoped_mmap
  btrace: prepare for throwing exceptions when enabling btrace
  btrace, gdbserver: use exceptions to convey btrace enable/disable
    errors
  btrace, gdbserver: remove the to_supports_btrace target method
  btrace: improve enable error messages
  btrace: check perf_event_paranoid

 gdb/Makefile.in                       |   2 +
 gdb/btrace.c                          |   3 -
 gdb/common/scoped_fd.h                |  60 +++++
 gdb/common/scoped_mmap.h              |  76 ++++++
 gdb/gdbserver/linux-low.c             |   2 -
 gdb/gdbserver/nto-low.c               |   1 -
 gdb/gdbserver/server.c                |  80 +++----
 gdb/gdbserver/spu-low.c               |   1 -
 gdb/gdbserver/target.h                |   7 -
 gdb/gdbserver/win32-low.c             |   1 -
 gdb/nat/linux-btrace.c                | 427 ++++++++--------------------------
 gdb/nat/linux-btrace.h                |   3 -
 gdb/remote.c                          |  32 ---
 gdb/target-delegates.c                |  33 ---
 gdb/target.c                          |   8 -
 gdb/target.h                          |   7 -
 gdb/unittests/scoped_fd-selftests.c   |  90 +++++++
 gdb/unittests/scoped_mmap-selftests.c |  92 ++++++++
 gdb/x86-linux-nat.c                   |  20 +-
 19 files changed, 458 insertions(+), 487 deletions(-)
 create mode 100644 gdb/common/scoped_fd.h
 create mode 100644 gdb/common/scoped_mmap.h
 create mode 100644 gdb/unittests/scoped_fd-selftests.c
 create mode 100644 gdb/unittests/scoped_mmap-selftests.c

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2018-03-06 16:32 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-26 14:14 [PATCH v2 0/7] improve btrace enable error reporting Markus Metzger
2018-01-26 14:14 ` [PATCH v2 2/7] common: add scoped_mmap Markus Metzger
2018-01-26 14:14 ` [PATCH v2 6/7] btrace: improve enable error messages Markus Metzger
2018-01-26 14:14 ` [PATCH v2 1/7] common: add scoped_fd Markus Metzger
2018-02-13 16:48   ` Yao Qi
2018-02-13 17:28     ` Metzger, Markus T
2018-02-14 15:22       ` Yao Qi
2018-02-14 17:26         ` Metzger, Markus T
2018-02-19 15:28           ` Metzger, Markus T
2018-02-19 15:46             ` Eli Zaretskii
2018-02-20 10:12             ` Yao Qi
2018-02-20 10:46               ` Metzger, Markus T
2018-02-20 11:09                 ` Yao Qi
2018-02-20 13:16                   ` Metzger, Markus T
2018-01-26 14:14 ` [PATCH v2 5/7] btrace, gdbserver: remove the to_supports_btrace target method Markus Metzger
2018-02-24 16:51   ` Maciej W. Rozycki
2018-02-26 13:08     ` Metzger, Markus T
2018-02-26 19:30       ` Andreas Arnez
2018-02-26 21:58         ` Maciej W. Rozycki
2018-02-27 10:57           ` Metzger, Markus T
2018-02-27 15:32             ` Maciej W. Rozycki
2018-02-27 18:14               ` Metzger, Markus T
2018-02-28 10:29                 ` Maciej W. Rozycki
2018-02-28 11:09                   ` Maciej W. Rozycki
2018-02-28 11:24                     ` Metzger, Markus T
2018-02-28 12:53                       ` Metzger, Markus T
2018-02-28 15:55                         ` Maciej W. Rozycki
2018-02-28 16:08                         ` Eli Zaretskii
2018-02-28 12:00     ` Yao Qi
2018-02-28 16:27       ` Sergio Durigan Junior
2018-03-01 11:33         ` Metzger, Markus T
2018-03-01 19:27           ` Sergio Durigan Junior
2018-03-05 12:14             ` Yao Qi
2018-03-05 16:13               ` Sergio Durigan Junior
2018-03-06  9:02                 ` Yao Qi
2018-03-06 16:32                   ` Sergio Durigan Junior
2018-03-01 19:34           ` Maciej W. Rozycki
2018-01-26 14:14 ` [PATCH v2 7/7] btrace: check perf_event_paranoid Markus Metzger
2018-01-26 14:14 ` [PATCH v2 4/7] btrace, gdbserver: use exceptions to convey btrace enable/disable errors Markus Metzger
2018-01-26 14:14 ` [PATCH v2 3/7] btrace: prepare for throwing exceptions when enabling btrace Markus Metzger
2018-02-06 16:28 ` [PATCH v2 0/7] improve btrace enable error reporting Pedro Alves
2018-02-07 10:41   ` Metzger, Markus T
2018-02-07 12:11     ` Pedro Alves
2018-02-08 10:40       ` Metzger, Markus T
2018-02-08 13:01         ` Pedro Alves
2018-02-08 13:49           ` Metzger, Markus T
2018-02-08 14:24             ` Pedro Alves

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).