diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-03-22 20:39:29 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-03-22 20:39:29 +0000 |
commit | 598d363666e7b84f3dd5bf0f4cca83e856d77b1b (patch) | |
tree | b84520ff7a4a595be03345d69e882fc9504afceb /gdb/utils.h | |
parent | 82b821e99da6e5360fcb86adf8edf73fd463240c (diff) | |
download | gdb-598d363666e7b84f3dd5bf0f4cca83e856d77b1b.zip gdb-598d363666e7b84f3dd5bf0f4cca83e856d77b1b.tar.gz gdb-598d363666e7b84f3dd5bf0f4cca83e856d77b1b.tar.bz2 |
gdb/
* exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
* remote.c (trace_error): Remove the special handling of '2'.
(readchar) <SERIAL_EOF>
(readchar) <SERIAL_ERROR>
(getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
(remote_get_trace_status): Call throw_exception if EX is
TARGET_CLOSE_ERROR.
* utils.c (perror_with_name): Rename to ...
(throw_perror_with_name): ... here. New parameter errcode, describe it
in the function comment.
(perror_with_name): New function wrapper.
* utils.h (enum errors): New stub declaration.
(throw_perror_with_name): New declaration.
gdb/testsuite/
* gdb.server/server-kill.c: New file.
* gdb.server/server-kill.exp: New file.
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index 9015c86..ad5bea4 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -278,6 +278,9 @@ extern char *hex_string_custom (LONGEST, int); extern void fprintf_symbol_filtered (struct ui_file *, const char *, enum language, int); +enum errors; +extern void throw_perror_with_name (enum errors errcode, const char *string) + ATTRIBUTE_NORETURN; extern void perror_with_name (const char *) ATTRIBUTE_NORETURN; extern void print_sys_errmsg (const char *, int); |