From: Tom Tromey <tromey@redhat.com>
To: ali_anwar <ali_anwar@codesourcery.com>
Cc: Pedro Alves <palves@redhat.com>, <gdb-patches@sourceware.org>
Subject: Re: Updated patch for Bug 13217 - thread apply all detach throws a SEGFAULT
Date: Wed, 10 Jul 2013 17:55:00 -0000 [thread overview]
Message-ID: <87k3kyfgf1.fsf@fleche.redhat.com> (raw)
In-Reply-To: <51DD37FA.8010306@codesourcery.com> (ali anwar's message of "Wed, 10 Jul 2013 15:31:22 +0500")
>>>>> "Ali" == ali anwar <ali_anwar@codesourcery.com> writes:
Ali> + /* Save a copy of the thread_list in case we execute detach
Ali> + command. */
Ali> + tp_array = xmalloc (sizeof (struct thread_info*) * tc);
Extra space after the "=". Missing space before the "*" in the type
name.
Ali> + ta_cleanup.tp_array = tp_array;
Ali> + ta_cleanup.count = tc;
Ali> +
Ali> + ALL_THREADS (tp)
Ali> + {
Ali> + tp_array[i] = tp;
Ali> + tp->refcount++;
Ali> + i++;
Ali> + }
Ali> + for (k = 0; k != i; k++)
Ali> + if (thread_alive (tp_array[k]))
Ali> + {
Ali> + switch_to_thread (tp_array[k]->ptid);
Ali> + printf_filtered (_("\nThread %d (%s):\n"),
Ali> + tp_array[k]->num, target_pid_to_str (inferior_ptid));
Ali> + execute_command (cmd, from_tty);
Ali> + strcpy (cmd, saved_cmd); /* Restore exact command used
Ali> + previously. */
Ali> + }
Ali> +
Ali> + make_cleanup (xfree, tp_array);
Ali> + make_cleanup (make_cleanup_thread_refcount, &ta_cleanup);
This installs the cleanups at the wrong point.
They must be installed before any potential exception is thrown.
That is, the xfree cleanup ought to be created just after initialization;
and the refcount cleanup ought to be created after the refcounts are
incremented.
Also, make_cleanup_thread_refcount is misnamed.
By convention, a "make_cleanup_" function creates a new cleanup.
The function that does the work of cleaning up is given a different name.
Tom
next prev parent reply other threads:[~2013-07-10 17:55 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-26 11:46 ali_anwar
2012-09-26 11:50 ` ali_anwar
2012-09-27 15:27 ` Jan Kratochvil
2012-09-27 15:32 ` Tom Tromey
2012-12-10 18:37 ` ali_anwar
2012-12-10 20:20 ` Tom Tromey
2012-12-11 15:37 ` ali_anwar
2012-12-11 16:43 ` Pedro Alves
2013-07-10 10:31 ` ali_anwar
2013-07-10 12:57 ` Joel Brobecker
2013-07-10 17:55 ` Tom Tromey [this message]
2013-07-11 12:30 ` ali_anwar
2013-07-13 21:13 ` Tom Tromey
2013-07-15 11:20 ` ali_anwar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87k3kyfgf1.fsf@fleche.redhat.com \
--to=tromey@redhat.com \
--cc=ali_anwar@codesourcery.com \
--cc=gdb-patches@sourceware.org \
--cc=palves@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox