From: Pedro Alves Date: Fri, 17 Oct 2014 10:05:06 +0000 (+0100) Subject: Fix build without libexpat X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80134cf5b3ca1f75a96af1856fdaad29ad1f57aa;p=binutils-gdb.git Fix build without libexpat clear_threads_listing_context is used for thread listing methods other than the xml based, but it's only defined when HAVE_LIBEXPAT is defined. gdb/ 2014-10-17 Pedro Alves * remote.c (clear_threads_listing_context): Move higher up, out of the HAVE_LIBEXPAT guard. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 62d1d068f8b..1ea76a5d20b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-10-17 Pedro Alves + + * remote.c (clear_threads_listing_context): Move higher up, out of + the HAVE_LIBEXPAT guard. + 2014-10-16 Tristan Gingold * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers) diff --git a/gdb/remote.c b/gdb/remote.c index 98d3f2a57f6..20f2988aca2 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2559,6 +2559,21 @@ struct threads_listing_context VEC (thread_item_t) *items; }; +/* Discard the contents of the constructed thread listing context. */ + +static void +clear_threads_listing_context (void *p) +{ + struct threads_listing_context *context = p; + int i; + struct thread_item *item; + + for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i) + xfree (item->extra); + + VEC_free (thread_item_t, context->items); +} + static int remote_newthread_step (threadref *ref, void *data) { @@ -2664,21 +2679,6 @@ const struct gdb_xml_element threads_elements[] = { { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } }; -/* Discard the contents of the constructed thread info context. */ - -static void -clear_threads_listing_context (void *p) -{ - struct threads_listing_context *context = p; - int i; - struct thread_item *item; - - for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i) - xfree (item->extra); - - VEC_free (thread_item_t, context->items); -} - #endif /* List remote threads using qXfer:threads:read. */