From 67f41397ce652a92b8160eb15de66c33b598a376 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Wed, 13 Jul 2011 17:07:16 +0000 Subject: gdb/ Work around kgdb. * remote.c (remote_get_trace_status): New variable ex. Put remote_get_noisy_reply into TRY_CATCH. Call exception_fprintf for it. --- gdb/remote.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'gdb/remote.c') diff --git a/gdb/remote.c b/gdb/remote.c index 19cc0b6..f9059e6 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10045,11 +10045,21 @@ remote_get_trace_status (struct trace_status *ts) char *p; /* FIXME we need to get register block size some other way. */ extern int trace_regblock_size; + volatile struct gdb_exception ex; trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet; putpkt ("qTStatus"); - p = remote_get_noisy_reply (&target_buf, &target_buf_size); + + TRY_CATCH (ex, RETURN_MASK_ERROR) + { + p = remote_get_noisy_reply (&target_buf, &target_buf_size); + } + if (ex.reason < 0) + { + exception_fprintf (gdb_stderr, ex, "qTStatus: "); + return -1; + } /* If the remote target doesn't do tracing, flag it. */ if (*p == '\0') -- cgit v1.1