This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 1/4] Merge remote thread listing methods
- From: Jiong Wang <jiong dot wang at arm dot com>
- To: Pedro Alves <palves at redhat dot com>, "gdb-patches at sourceware dot org" <gdb-patches at sourceware dot org>
- Date: Fri, 17 Oct 2014 09:57:31 +0100
- Subject: Re: [PATCH 1/4] Merge remote thread listing methods
- Authentication-results: sourceware.org; auth=none
- References: <1412266896-28210-1-git-send-email-palves at redhat dot com> <1412266896-28210-2-git-send-email-palves at redhat dot com>
On 02/10/14 17:21, Pedro Alves wrote:
+
+static void
+remote_threads_info (struct target_ops *ops)
+{
+ struct remote_state *rs = get_remote_state ();
+ struct threads_listing_context context;
+ struct cleanup *old_chain;
+
+ context.items = NULL;
+ old_chain = make_cleanup (clear_threads_listing_context, &context);
Hi Pedro,
looks like this change break arm native build on chrome book.
clear_threads_listing_context only exist when HAVE_LIBEXPACT defined.
Reagrds,
Jiong