svn commit: r330091 - head/bin/ps

Conrad Meyer cem at freebsd.org
Wed Feb 28 00:32:56 UTC 2018


This is probably the wrong change to make.

It makes us incompatible with Linux and Mac OS.  Anyway, I'll reopen
the associated PR and you can handle it how you like.

Conrad

On Tue, Feb 27, 2018 at 4:17 PM, Mike Karels <karels at freebsd.org> wrote:
> Author: karels
> Date: Wed Feb 28 00:17:08 2018
> New Revision: 330091
> URL: https://svnweb.freebsd.org/changeset/base/330091
>
> Log:
>   Revert r314685 in ps
>
>   Revert r314685, and add a comment describing the original
>   behavior and the intent.
>
>   Reviewed by:  dab@ vangyzen@ jhb@
>   Differential Revision:        https://reviews.freebsd.org/D14530
>
> Modified:
>   head/bin/ps/ps.c
>
> Modified: head/bin/ps/ps.c
> ==============================================================================
> --- head/bin/ps/ps.c    Tue Feb 27 22:22:23 2018        (r330090)
> +++ head/bin/ps/ps.c    Wed Feb 28 00:17:08 2018        (r330091)
> @@ -194,10 +194,17 @@ main(int argc, char *argv[])
>         (void) setlocale(LC_ALL, "");
>         time(&now);                     /* Used by routines in print.c. */
>
> +       /*
> +        * Compute default output line length before processing options.
> +        * If COLUMNS is set, use it.  Otherwise, if this is part of an
> +        * interactive job (i.e. one associated with a terminal), use
> +        * the terminal width.  "Interactive" is determined by whether
> +        * any of stdout, stderr, or stdin is a terminal.  The intent
> +        * is that "ps", "ps | more", and "ps | grep" all use the same
> +        * default line length unless -w is specified.
> +        */
>         if ((cols = getenv("COLUMNS")) != NULL && *cols != '\0')
>                 termwidth = atoi(cols);
> -       else if (!isatty(STDOUT_FILENO))
> -               termwidth = UNLIMITED;
>         else if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
>              ioctl(STDERR_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
>              ioctl(STDIN_FILENO,  TIOCGWINSZ, (char *)&ws) == -1) ||
>


More information about the svn-src-all mailing list