Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Daniel Jacobowitz <drow@false.org>
To: gdb-patches@sources.redhat.com
Subject: Re: mi tty commands
Date: Sat, 28 May 2005 23:49:00 -0000	[thread overview]
Message-ID: <20050528230855.GE22435@nevyn.them.org> (raw)
In-Reply-To: <20050522210040.GB9231@white>

On Sun, May 22, 2005 at 05:00:40PM -0400, Bob Rossi wrote:
> On Thu, Mar 10, 2005 at 09:26:44PM -0500, Bob Rossi wrote:
> > Ping
> 
> Ping, and O yeah, I updated the patch the best I could to get the code
> to conform with the GNU coding standards. I hope I'm getting this right.

Not quite, but I don't mind proofreading :-)

> +2005-05-22  Bob Rossi  <bob@brasko.net>
> +
> +	* fork-child.c (fork-inferior): Use accessor function for
> +	inferior_io_terminal
> +	* infcmd.c (inferior_io_terminal): make static

All ChangeLog entries should start with a capital letter, end with a
period, and be generally sentencelike.  You've got the third bit down.

> +	(set_inferior_io_terminal): Add accessor definition
> +	(get_inferior_io_terminal): Add accessor definition
> +	(tty_command): Use accessor function
> +	(_initialize_infcmd): Add inferior_tty setshow variable
> +	* inferior.h (set_inferior_io_terminal): Add accessor declaration
> +	(get_inferior_io_terminal): Add accessor declaration
> +	* nto-procfs (procfs_create_inferior): Use accessor function
> +	* win32-nat.c (child_create_inferior): Use accessor function
> +	* mi/mi-cmd-env.c (mi_cmd_inferior_tty_set): Add MI definition
> +	(mi_cmd_inferior_tty_set): Add MI definition

Just "New function" is usually fine.

> +	* mi/mi-cmds.c (mi_cmds): Add inferior-tty-set/inferior-tty-show

Please use "and" instead of /.

> +  const char *inferior_io_terminal = get_inferior_io_terminal();

That pesky space! :-)

>    /* If no exec file handed to us, get it from the exec-file command
>       -- with a good, common error message if none is specified.  */
> @@ -261,7 +262,7 @@
>  
>    /* Tell the terminal handling subsystem what tty we plan to run on;
>       it will just record the information for later.  */
> -  new_tty_prefork (inferior_io_terminal);
> +  new_tty_prefork ((char*)inferior_io_terminal);

Another pesky space; please use "char *".

> +  if (inferior_io_terminal)
> +    xfree ( inferior_io_terminal );

Some pesky anti-spaces.

> +  /* add the filename of the terminal connected to inferior I/O */
> +  add_setshow_string_noescape_cmd ( "inferior_tty", class_run,
> +				    &inferior_io_terminal, _("\
> +Set terminal for future runs of program being debugged."), _("\
> +Show terminal for future runs of program being debugged."), _("\
> +Usage: set inferior_tty /dev/pts/1"), NULL, NULL, &setlist, &showlist);
> +  set_cmd_completer (c, filename_completer);
> +

Ditto on the pesky spaces.  The Usage: bit is unnecessary.  There are
no other set commands with underscores; inferior-tty would be better,
but would just "tty" be OK?  That's even simpler.

> -/* File name for default use for standard in/out in the inferior.  */
> +/* Set/Get name for default use for standard in/out in the inferior.  */

Get doesn't need to be capitalized here.  Also, it's still a file name;
could you leave that?

> +Set terminal for future runs of program being debugged.

I think there's either one or two missing uses of "the" here; at least
one before program.

> +/* Set the inferior terminal device name */

Full sentence with a full stop at the end, please.

> +    # test that the commands,
> +    #   -inferior-tty-set
> +    #   -inferior-tth-show

Test that they what?  Or just "Test the commands:".

I tried to point out one example of each of the formatting problems;
that wasn't an exhaustive list, but you can probably see all the others
now.

-- 
Daniel Jacobowitz
CodeSourcery, LLC


  reply	other threads:[~2005-05-28 23:09 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-02-24 20:49 Bob Rossi
2005-02-26  4:33 ` Eli Zaretskii
2005-02-26  6:07   ` Bob Rossi
2005-02-26  8:25     ` Daniel Jacobowitz
2005-02-28 20:28       ` Bob Rossi
2005-03-02  2:52         ` Bob Rossi
2005-03-11  2:26           ` Bob Rossi
2005-05-23  3:13             ` Bob Rossi
2005-05-28 23:49               ` Daniel Jacobowitz [this message]
2005-05-29  8:37                 ` Eli Zaretskii
2005-05-29 16:22                   ` Daniel Jacobowitz
2005-05-29 18:10                     ` Eli Zaretskii
2005-05-29 19:05                       ` Daniel Jacobowitz
2005-05-30 15:48                   ` Bob Rossi
2005-06-01  0:14                     ` Bob Rossi
2005-06-01  4:00                       ` Eli Zaretskii
2005-06-01 13:07                         ` Bob Rossi
2005-06-01 17:42                           ` Bob Rossi
2005-06-01 20:25                             ` Eli Zaretskii
2005-06-02 22:17                               ` Bob Rossi
2005-06-03  6:48                                 ` Eli Zaretskii
2005-06-03 17:32                                   ` Bob Rossi
2005-06-10  2:28                                 ` Bob Rossi
2005-06-10  6:36                                   ` Eli Zaretskii
2005-06-10 11:04                                     ` Bob Rossi
2005-06-13  3:07                                 ` Daniel Jacobowitz
2005-06-13  6:09                                   ` Eli Zaretskii
2005-06-17 21:08                                   ` Bob Rossi
2005-06-17 21:14                                     ` Daniel Jacobowitz
2005-06-18  8:27                                       ` Eli Zaretskii
2005-06-18 12:29                                       ` Bob Rossi
2005-06-26 13:43                                         ` Bob Rossi
2005-07-03 18:43                                         ` Daniel Jacobowitz
2005-07-06 14:54                                           ` Bob Rossi
2005-07-10 21:08                                             ` Mark Kettenis
2005-07-10 21:32                                               ` Bob Rossi
2005-07-11 15:52                                               ` Bob Rossi
2005-07-11 18:41                                                 ` Mark Kettenis
2005-07-11 20:00                                                   ` Bob Rossi
2005-07-11 20:01                                                     ` Daniel Jacobowitz
2005-07-11 20:44                                                       ` Bob Rossi
2005-07-11 20:55                                                         ` Mark Kettenis
2005-07-11 21:26                                               ` Bob Rossi
2005-07-12 20:56                                                 ` Mark Kettenis
2005-07-14 14:51                                                   ` Bob Rossi
2005-06-01 20:12                           ` Eli Zaretskii
2005-06-01 20:43                             ` Bob Rossi
2005-06-02  3:48                               ` Eli Zaretskii
2005-05-30 15:48                 ` Bob Rossi

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=20050528230855.GE22435@nevyn.them.org \
    --to=drow@false.org \
    --cc=gdb-patches@sources.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