diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-14 23:27:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-14 23:27:14 +0000 |
commit | 1c3c7ee7fbd13bf80fa8ff28bd867c20ae216196 (patch) | |
tree | cd509ea6feaa80f1131a5e54fa64e495b44bae67 /gdb/thread.c | |
parent | f304d6ec50b63ce98a594cec959fbed065af9aaf (diff) | |
download | gdb-1c3c7ee7fbd13bf80fa8ff28bd867c20ae216196.zip gdb-1c3c7ee7fbd13bf80fa8ff28bd867c20ae216196.tar.gz gdb-1c3c7ee7fbd13bf80fa8ff28bd867c20ae216196.tar.bz2 |
2005-01-14 Andrew Cagney <cagney@gnu.org>
* exceptions.h (catch_exceptions): Delete errstring parameter.
(catch_exceptions_with_msg): Ditto.
* exceptions.c (catch_exceptions_with_msg): Update.
(catch_exceptions): Update.
* symfile-mem.c (add_vsyscall_page): Update.
* frame.c (get_current_frame): Update.
* wrapper.c (gdb_value_struct_elt): Update.
* exceptions.c (catch_exceptions): Update.
* thread.c (gdb_list_thread_ids, gdb_thread_select): Update.
* breakpoint.c (gdb_breakpoint_query, gdb_breakpoint): Update.
* remote-fileio.c (remote_fileio_request): Update.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index d201b43..ecdbe5e 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -285,7 +285,7 @@ enum gdb_rc gdb_list_thread_ids (struct ui_out *uiout, char **error_message) { return catch_exceptions_with_msg (uiout, do_captured_list_thread_ids, NULL, - NULL, error_message, RETURN_MASK_ALL); + error_message, RETURN_MASK_ALL); } /* Load infrun state for the thread PID. */ @@ -670,7 +670,7 @@ enum gdb_rc gdb_thread_select (struct ui_out *uiout, char *tidstr, char **error_message) { return catch_exceptions_with_msg (uiout, do_captured_thread_select, tidstr, - NULL, error_message, RETURN_MASK_ALL); + error_message, RETURN_MASK_ALL); } /* Commands with a prefix of `thread'. */ |