From: Tom Tromey <tromey@redhat.com>
To: scott.harrison@tandberg.com
Cc: gdb-patches@sourceware.org
Subject: Re: New feature: allow thread command to take a LWPID.
Date: Thu, 04 Feb 2010 23:30:00 -0000 [thread overview]
Message-ID: <m3k4usinos.fsf@fleche.redhat.com> (raw)
In-Reply-To: <20100204113543.GB2704@tandberg.com> (scott harrison's message of "Thu, 4 Feb 2010 11:35:43 +0000")
>>>>> "scott" == scott harrison <scott.harrison@tandberg.com> writes:
Scott> Before invoking GDB we know the LWPID and the PID so we attach to
Scott> the PID (--pid), however, currently GDB only knows about its own
Scott> threadids, we don't know this before invoking GDB but our script
Scott> is already written, so I have created a small patch to the
Scott> "thread" command to take a %<LWPID> option, and swtich to that
Scott> thread.
This seems like a reasonable idea.
I am not super fond of the syntax. I don't have a better suggestion
though :-(
Scott> Patch is attached. I realise that this patch may not be applicable to
Scott> all platforms that gdb is used on, sorry.
Do you have a copyright assignment in place? We'll need one before we
can incorporate this. If you don't, send me email off-list and I will
get you started.
Mini review:
Scott> +struct thread_info *
Scott> +find_thread_lwp (int num)
New functions should have a header comment describing their purpose,
arguments, and return. And, this one should be static.
Scott> + if (tp->ptid.lwp == num)
Scott> + return tp;
lwp is an long but the `num' argument is an int. That seems wrong.
Scott> + char *tidstring=(char *)tidstr;
In the GNU style, there are spaces around operators. In this case you
also don't need the cast. So it would look like:
char *tidstring = tidstr;
Scott> + if (tidstring[0] == '%')
Scott> + {
Brace indented two more spaces, then the body two beyond that.
Scott> + num = value_as_long (parse_and_eval ((void *)(tidstring+1)));
Spaces. You should probably introduce a new local of 'long' type here.
You don't need the cast to void*, because parse_and_eval actually takes
a char* argument.
thanks,
Tom
next prev parent reply other threads:[~2010-02-04 23:30 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-04 11:35 scott.harrison
2010-02-04 23:30 ` Tom Tromey [this message]
2010-02-05 3:28 ` Joel Brobecker
2010-02-05 9:40 ` scott.harrison
2010-02-05 10:07 ` Joel Brobecker
2010-02-05 10:53 ` Andreas Schwab
2010-02-05 11:49 ` Joel Brobecker
2010-02-05 16:04 ` Tom Tromey
2010-02-08 6:13 ` Joel Brobecker
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=m3k4usinos.fsf@fleche.redhat.com \
--to=tromey@redhat.com \
--cc=gdb-patches@sourceware.org \
--cc=scott.harrison@tandberg.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