public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
@ 2024-04-02  3:36 Bruce Jerrick
  2024-04-02  6:18 ` Brian Inglis
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Bruce Jerrick @ 2024-04-02  3:36 UTC (permalink / raw)
  To: cygwin

'xargs' (part of 'findutils') is completely broken if
  3.6.0-0.108.gb7f5a33200a9 (test version) is installed:

  $ xargs
  xargs: Unexpected suffix cmdline on cmdline

  $ xargs --version
  xargs: Unexpected suffix cmdline on cmdline

  $ echo narf | xargs echo
  xargs: Unexpected suffix cmdline on cmdline

'xargs' is from the current x86_64 findutils-4.9.0-1 .
All other packages are up to date per setup.ini dated
  2024-04-01 21:32:37 GMT.

I first discovered this under Windoze 11 Insider Preview
  (with no other Cygwin test versions).
On a Windoze 10 machine, it was OK with cygwin 3.5.1-1,
  appeared when I installed 3.6.0-0.108.gb7f5a33200a9,
  then went away when I reverted to 3.5.1-1 .
(All machines are VMware VM's.)

----------------------------------------------------------------

I have just started looking at the source, and the error
  is coming from this snippet from 'safe_atoi()' in
  lib/safe-atoi.c :

safe_atoi (const char *s, enum quoting_style style)
{
  ...
  lval = strtol (s, &end, 10);
  ...
  else if (*end)
    {
      die (EXIT_FAILURE, errno, _("Unexpected suffix %s on %s"),
       quotearg_n_style (0, style, end),
       quotearg_n_style (1, style, s));
    }
  ...

From 'man 3 strtol":
  "If the subject string is empty (or not in acceptable form),
    no conversion is performed and the value of s is stored
    in ptr [i.e., 'end'] ..."
Which is apparently what is happening here.

I have yet to discover where "cmdline" is coming from (perhaps
  /proc/%d/cmdline), let alone what it looks like.
Further progress by me will depend on what success I have in
  building 'findutils' from source :) .


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02  3:36 xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9 Bruce Jerrick
@ 2024-04-02  6:18 ` Brian Inglis
  2024-04-02  7:48 ` Bruce Jerrick
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: Brian Inglis @ 2024-04-02  6:18 UTC (permalink / raw)
  To: cygwin

On 2024-04-01 21:36, Bruce Jerrick via Cygwin wrote:
> 'xargs' (part of 'findutils') is completely broken if
>    3.6.0-0.108.gb7f5a33200a9 (test version) is installed:
   ^ Cygwin
> 
>    $ xargs
>    xargs: Unexpected suffix cmdline on cmdline
> 
>    $ xargs --version
>    xargs: Unexpected suffix cmdline on cmdline
> 
>    $ echo narf | xargs echo
>    xargs: Unexpected suffix cmdline on cmdline
> 
> 'xargs' is from the current x86_64 findutils-4.9.0-1 .
> All other packages are up to date per setup.ini dated
>    2024-04-01 21:32:37 GMT.
> 
> I first discovered this under Windoze 11 Insider Preview
>    (with no other Cygwin test versions).
> On a Windoze 10 machine, it was OK with cygwin 3.5.1-1,
>    appeared when I installed 3.6.0-0.108.gb7f5a33200a9,
>    then went away when I reverted to 3.5.1-1 .
> (All machines are VMware VM's.)
> 
> ----------------------------------------------------------------
> 
> I have just started looking at the source, and the error
>    is coming from this snippet from 'safe_atoi()' in
>    lib/safe-atoi.c :

   ^ findutils 4.9.0

> safe_atoi (const char *s, enum quoting_style style)
> {
>    ...
>    lval = strtol (s, &end, 10);
>    ...
>    else if (*end)
>      {
>        die (EXIT_FAILURE, errno, _("Unexpected suffix %s on %s"),
>         quotearg_n_style (0, style, end),
>         quotearg_n_style (1, style, s));
>      }
>    ...

That function safe_atoi() appears only to be called by xargs from 
remember_non_cloexec_fds() -> get_max_fd() -> get_proc_max_fd(), all in 
lib/fdleak.c and appears to be trying to convert the text cmdline, which should 
not happen because it is trying to open, read, and convert directory entries 
from /proc/self/fd.

Could you please try running:

$ xargs -t --show-limits < /dev/null
Your environment variables take up 9285 bytes
POSIX upper limit on argument length (this system): 20667
POSIX smallest allowable upper limit on argument length (all systems): 4096
Maximum length of command we could actually use: 11382
Size of command buffer we are actually using: 20667
Maximum parallelism (--max-procs must be no greater): 2147483647
echo

and it would be useful if you could run a failing command under strace e.g.

$ strace -o xargs.strace xargs -t --show-limits < /dev/null

or similar and attach as text to your reply.

There could be something funny going on with recent changes to Cygwin directory 
lookup affecting proc virtual file system lookups e.g.

Cygwin: implement dirent.d_reclen
https://cygwin.com/cgit/newlib-cygwin/commit/?h=topic/3.6&id=7e40e0169a75ebdf3f3861dab47abdfeb0ad9c58

and subsequent changes around dirents.

Could someone please take a look at those recent changes, testing access to proc 
file system entries, perhaps also with xargs, in case access to virtual files 
have issues?

>  From 'man 3 strtol":
>    "If the subject string is empty (or not in acceptable form),
>      no conversion is performed and the value of s is stored
>      in ptr [i.e., 'end'] ..."
> Which is apparently what is happening here.
> 
> I have yet to discover where "cmdline" is coming from (perhaps
>    /proc/%d/cmdline), let alone what it looks like.
> Further progress by me will depend on what success I have in
>    building 'findutils' from source :) .

For more info, install cygwin-doc, and run:
$ man 5 proc

Contents of /proc/.../cmdline is an argv array:

$ cat -A /proc/self/cmdline; echo
cat^@-A^@/proc/self/cmdline^@

There could also be something funny going on with recent changes to Cygwin 
process startup e.g.

Cygwin: redefine CW_CMDLINE to CW_CMDLINE_ALLOC
https://cygwin.com/cgit/newlib-cygwin/commit/?h=topic/3.6&id=732afede935832beab181ae421c1366df2ae6af5

Could someone please take a look at those recent changes, testing with xargs, in 
case base assumptions of argv[] command line arguments and environ, envp[] 
environment variables address locations, terminators, atexit routines, could be 
broken?

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02  3:36 xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9 Bruce Jerrick
  2024-04-02  6:18 ` Brian Inglis
@ 2024-04-02  7:48 ` Bruce Jerrick
  2024-04-02  8:08   ` Bruce Jerrick
  2024-04-02  8:42 ` Bruce Jerrick
  2024-04-02 15:38 ` Bruce Jerrick
  3 siblings, 1 reply; 9+ messages in thread
From: Bruce Jerrick @ 2024-04-02  7:48 UTC (permalink / raw)
  To: cygwin

No need for attachments, the results are simply the same failure:

> Could you please try running:
> ...

  $ xargs -t --show-limits < /dev/null
  xargs: Unexpected suffix cmdline on cmdline

> and it would be useful if you could run a failing command under strace
e.g.
> ...

  $ strace -o xargs.strace xargs -t --show-limits < /dev/null
  xargs: Unexpected suffix cmdline on cmdline

> Contents of /proc/.../cmdline is an argv array:
> ...

I get the same thing you showed:

  $ cat -A /proc/self/cmdline; echo
  cat^@-A^@/proc/self/cmdline^@

The runtime of the failed xargs is so short I haven't been able to capture
its /proc/*/cmdline, but I did get one from the 'strace ...":

  D:\cygwin64\bin\strace.exe^@-o^@xargs.strace^@xargs^@-t^@--show-limits

I can try older test versions of cygwin, to see where it first shows.

-- Bruce


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02  7:48 ` Bruce Jerrick
@ 2024-04-02  8:08   ` Bruce Jerrick
  0 siblings, 0 replies; 9+ messages in thread
From: Bruce Jerrick @ 2024-04-02  8:08 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 71 bytes --]

Sorry, I missed the xargs.strace file; it's included as an attachment.

[-- Attachment #2: xargs.strace --]
[-- Type: text/plain, Size: 48220 bytes --]

--- Process 7020 created
--- Process 7020 loaded C:\Windows\System32\ntdll.dll at 00007ff99e030000
--- Process 7020 loaded C:\Windows\System32\kernel32.dll at 00007ff99ca40000
--- Process 7020 loaded C:\Windows\System32\KernelBase.dll at 00007ff99b490000
--- Process 7020 loaded C:\Windows\System32\apphelp.dll at 00007ff998850000
--- Process 7020 loaded D:\cygwin64\bin\cygwin1.dll at 00007ff963300000
--- Process 7020 thread 6896 created
--- Process 7020 thread 9828 created
--- Process 7020 loaded D:\cygwin64\bin\cygintl-8.dll at 00000005ee2d0000
--- Process 7020 loaded D:\cygwin64\bin\cygiconv-2.dll at 00000003eee60000
--- Process 7020 thread 9796 created
    4       4 [main] xargs (7020) **********************************************
  651     655 [main] xargs (7020) Program name: D:\cygwin64\bin\xargs.exe (windows pid 7020)
  291     946 [main] xargs (7020) OS version:   Windows NT-10.0
  193    1139 [main] xargs (7020) **********************************************
--- Process 7020 loaded C:\Windows\System32\advapi32.dll at 00007ff99cea0000
--- Process 7020 loaded C:\Windows\System32\msvcrt.dll at 00007ff99c980000
--- Process 7020 loaded C:\Windows\System32\sechost.dll at 00007ff99d200000
--- Process 7020 loaded C:\Windows\System32\bcrypt.dll at 00007ff99b3c0000
--- Process 7020 loaded C:\Windows\System32\rpcrt4.dll at 00007ff99d650000
--- Process 7020 loaded C:\Windows\System32\cryptbase.dll at 00007ff99aa80000
--- Process 7020 loaded C:\Windows\System32\bcryptprimitives.dll at 00007ff99b840000
13841   14980 [main] xargs (7020) sigprocmask: 0 = sigprocmask (0, 0x0, 0x7FF9635DE350)
 2184   17164 [main] xargs (7020) open_shared: name shared.5, shared 0x1A0000000 (wanted 0x1A0000000), h 0x150, m 0, created 0
  369   17533 [main] xargs (7020) user_heap_info::init: heap base 0xA00000000, heap top 0xA00000000, heap size 0x20000000 (536870912)
 3005   20538 [main] xargs (7020) open_shared: name S-1-5-21-4021324372-3308885545-1226283485-1002.1, shared 0x1A0010000 (wanted 0x1A0010000), h 0x148, m 1, created 0
  401   20939 [main] xargs (7020) user_info::create: opening user shared for 'S-1-5-21-4021324372-3308885545-1226283485-1002' at 0x1A0010000
  556   21495 [main] xargs (7020) user_info::create: user shared version AB1FCCE8
  496   21991 [main] xargs (7020) fhandler_pipe::create: name \\.\pipe\cygwin-f76db13c759b51fa-7020-sigwait, size 11440, mode PIPE_TYPE_MESSAGE
  325   22316 [main] xargs (7020) fhandler_pipe::create: pipe read handle 0x15C
  252   22568 [main] xargs (7020) fhandler_pipe::create: CreateFile: name \\.\pipe\cygwin-f76db13c759b51fa-7020-sigwait
  344   22912 [main] xargs (7020) fhandler_pipe::create: pipe write handle 0x164
  322   23234 [main] xargs (7020) dll_crt0_0: finished dll_crt0_0 initialization
--- Process 7020 thread 9784 created
 1652   24886 [sig] xargs (7020) SetThreadName: SetThreadDescription() failed. 00000000 10000000
  883   25769 [sig] xargs (7020) wait_sig: entering ReadFile loop, my_readsig 0x15C, my_sendsig 0x164
 1437   27206 [main] xargs (7020) mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\etc\setup, 0x0, no-add-slash)
  502   27708 [main] xargs (7020) normalize_win32_path: D:\cygwin64\etc\setup = normalize_win32_path (D:\cygwin64\etc\setup)
  217   27925 [main] xargs (7020) mount_info::conv_to_posix_path: /etc/setup = conv_to_posix_path (D:\cygwin64\etc\setup)
  268   28193 [main] xargs (7020) time: 1712043393 = time(0x0)
  440   28633 [main] xargs (7020) sigprocmask: 0 = sigprocmask (0, 0x0, 0xA00000100)
 1582   30215 [main] xargs (7020) _cygwin_istext_for_stdio: fd 0: not open
  321   30536 [main] xargs (7020) _cygwin_istext_for_stdio: fd 1: not open
  629   31165 [main] xargs (7020) _cygwin_istext_for_stdio: fd 2: not open
  831   31996 [main] xargs (7020) open_shared: name cygpid.822, shared 0x1A0020000 (wanted 0x1A0020000), h 0x184, m 2, created 1
  353   32349 [main] xargs (7020) time: 1712043393 = time(0x0)
  380   32729 [main] xargs 822 pinfo::thisproc: myself dwProcessId 7020
  313   33042 [main] xargs 822 environ_init: GetEnvironmentStrings returned 0x67D970
 1045   34087 [main] xargs 822 win32env_to_cygenv: 0xA000004B0: ALLUSERSPROFILE=C:\ProgramData
  524   34611 [main] xargs 822 win32env_to_cygenv: 0xA000004E0: APPDATA=C:\Users\bruce\AppData\Roaming
  454   35065 [main] xargs 822 win32env_to_cygenv: 0xA00000510: COMMONPROGRAMFILES=C:\Program Files\Common Files
  535   35600 [main] xargs 822 win32env_to_cygenv: 0xA00000550: COMPUTERNAME=BUGS-INSIDER
  557   36157 [main] xargs 822 win32env_to_cygenv: 0xA00000580: COMSPEC=C:\WINDOWS\system32\cmd.exe
  413   36570 [main] xargs 822 win32env_to_cygenv: 0xA000005B0: CYG=/E/cygwin-incoming
 5217   41787 [main] xargs 822 win32env_to_cygenv: 0xA000005D0: CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
  414   42201 [main] xargs 822 win32env_to_cygenv: 0xA00000620: CommonProgramW6432=C:\Program Files\Common Files
  428   42629 [main] xargs 822 parse_options: glob (called func)
  445   43074 [main] xargs 822 parse_options: returning
  221   43295 [main] xargs 822 win32env_to_cygenv: 0xA00000660: CYGWIN=noglob
  435   43730 [main] xargs 822 win32env_to_cygenv: 0xA000006A0: DL=/usr/local/FTP.incoming/DL
  676   44406 [main] xargs 822 win32env_to_cygenv: 0xA000006D0: DVDCSS_CACHE=off
  470   44876 [main] xargs 822 win32env_to_cygenv: 0xA000006F0: DriverData=C:\Windows\System32\Drivers\DriverData
 4400   49276 [main] xargs 822 win32env_to_cygenv: 0xA00000730: EXECIGNORE=*.dll
  483   49759 [main] xargs 822 win32env_to_cygenv: 0xA00000750: FED=/usr/local/FTP.incoming/fedora
  442   50201 [main] xargs 822 win32env_to_cygenv: 0xA00000780: FEDARM=/usr/local/FTP.incoming/fedora.armhfp
  950   51151 [main] xargs 822 win32env_to_cygenv: 0xA000007C0: FP_NO_HOST_CHECK=NO
  457   51608 [main] xargs 822 win32env_to_cygenv: 0xA000007E0: FTP=/usr/local/FTP.incoming
  441   52049 [main] xargs 822 win32env_to_cygenv: 0xA00000810: GOM=/usr/local/FTP.incoming/GUTEN-O-MATIC
  481   52530 [main] xargs 822 win32env_to_cygenv: 0xA00000850: GUTEN=/downloads/sites/www.gutenberg.org
  476   53006 [main] xargs 822 win32env_to_cygenv: 0xA00000890: HISTIGNORE=bg:fg:j:h:hh:fh *
  407   53413 [main] xargs 822 win32env_to_cygenv: 0xA000008C0: HISTTIMEFORMAT=%T  
  462   53875 [main] xargs 822 getwinenv: can't set native for HOME= since no environ yet
  271   54146 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\home\bruce, 0x10000000, no-add-slash)
  306   54452 [main] xargs 822 normalize_win32_path: D:\cygwin64\home\bruce = normalize_win32_path (D:\cygwin64\home\bruce)
  253   54705 [main] xargs 822 mount_info::conv_to_posix_path: /home/bruce = conv_to_posix_path (D:\cygwin64\home\bruce)
  784   55489 [main] xargs 822 win_env::add_cache: posix /home/bruce
  270   55759 [main] xargs 822 win_env::add_cache: native HOME=D:\cygwin64\home\bruce
  205   55964 [main] xargs 822 posify_maybe: env var converted to HOME=/home/bruce
  684   56648 [main] xargs 822 win32env_to_cygenv: 0xA00000960: HOME=/home/bruce
  442   57090 [main] xargs 822 win32env_to_cygenv: 0xA000008E0: HOMEDRIVE=C:
  496   57586 [main] xargs 822 win32env_to_cygenv: 0xA00000980: HOMEPATH=\Users\bruce
  390   57976 [main] xargs 822 win32env_to_cygenv: 0xA000009A0: HOSTNAME=Bugs-Insider
  382   58358 [main] xargs 822 win32env_to_cygenv: 0xA000009C0: IMDB=/downloads/sites/imdb.com
  399   58757 [main] xargs 822 win32env_to_cygenv: 0xA000009F0: INFOPATH=/usr/local/info:/usr/share/info:/usr/info
  384   59141 [main] xargs 822 win32env_to_cygenv: 0xA00000A30: IOM=/usr/local/FTP.incoming/IMDB-O-MATIC
  503   59644 [main] xargs 822 win32env_to_cygenv: 0xA00000A70: LANG=C.UTF-8
  766   60410 [main] xargs 822 win32env_to_cygenv: 0xA00000A90: LC_COLLATE=C
  682   61092 [main] xargs 822 win32env_to_cygenv: 0xA00000AB0: LC_CTYPE=C.UTF-8
  904   61996 [main] xargs 822 win32env_to_cygenv: 0xA00000AD0: LC_TIME=C
  831   62827 [main] xargs 822 win32env_to_cygenv: 0xA00000AF0: LESS=--ignore-case --jump-target=10 --status-column --LINE-NUMBERS --chop-long-lines --shift 1 --use-color -DS-Y -DBB- 
  723   63550 [main] xargs 822 win32env_to_cygenv: 0xA00000B70: LOCALAPPDATA=C:\Users\bruce\AppData\Local
  750   64300 [main] xargs 822 win32env_to_cygenv: 0xA00000BB0: LOGONSERVER=\\BUGS-INSIDER
  754   65054 [main] xargs 822 win32env_to_cygenv: 0xA00000BE0: MANPAGER=/usr/bin/less -n -is
  760   65814 [main] xargs 822 win32env_to_cygenv: 0xA00000C10: MINTTY_SHORTCUT=/cygdrive/c/Users/Public/Desktop/Cygwin64 Terminal.lnk
  772   66586 [main] xargs 822 win32env_to_cygenv: 0xA00000C60: MORE=--exit-on-eof
  738   67324 [main] xargs 822 win32env_to_cygenv: 0xA00000C80: MOZ_ALLOW_DOWNGRADE=1
  515   67839 [main] xargs 822 win32env_to_cygenv: 0xA00000CA0: MVDB=/usr/local/mvdb
 1678   69517 [main] xargs 822 win32env_to_cygenv: 0xA00000CC0: NFDB=/downloads/sites/netflix.com
 1430   70947 [main] xargs 822 win32env_to_cygenv: 0xA00000CF0: NOM=/usr/local/FTP.incoming/NETFLIX-O-MATIC
 1922   72869 [main] xargs 822 win32env_to_cygenv: 0xA00000D30: NUMBER_OF_PROCESSORS=4
  540   73409 [main] xargs 822 win32env_to_cygenv: 0xA00000D50: OLDPWD=/home/bruce
  672   74081 [main] xargs 822 win32env_to_cygenv: 0xA00000D70: ORIGINAL_PATH=/cygdrive/c/program files (x86)/intel/icls client:/cygdrive/c/program files/intel/icls client:/cygdrive/c/windows/system32:/cygdrive/c/windows:/cygdrive/c/windows/system32/wbem:/cygdrive/c/windows/system32/windowspowershell/v1.0:/cygdrive/c/program files/intel/intel(r) management engine components/dal:/cygdrive/c/program files/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/dal:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/nvidia corporation/physx/common:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/WINDOWS/System32/OpenSSH:/cygdrive/c/Program Files (x86)/Windows Live/Shared:/cygdrive/c/Program Files/dotnet:/cygdrive/c/Users/bruce/AppData/Local/Microsoft/WindowsApps
  516   74597 [main] xargs 822 win32env_to_cygenv: 0xA00001120: OS=Windows_NT
  648   75245 [main] xargs 822 win32env_to_cygenv: 0xA00001140: OneDrive=C:\Users\bruce\OneDrive
  899   76144 [main] xargs 822 getwinenv: can't set native for PATH= since no environ yet
  435   76579 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\usr\local\bin, 0x10000100, no-add-slash)
  216   76795 [main] xargs 822 normalize_win32_path: D:\cygwin64\usr\local\bin = normalize_win32_path (D:\cygwin64\usr\local\bin)
  209   77004 [main] xargs 822 mount_info::conv_to_posix_path: /usr/local/bin = conv_to_posix_path (D:\cygwin64\usr\local\bin)
  383   77387 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\bin, 0x10000100, no-add-slash)
  228   77615 [main] xargs 822 normalize_win32_path: D:\cygwin64\bin = normalize_win32_path (D:\cygwin64\bin)
  471   78086 [main] xargs 822 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (D:\cygwin64\bin)
  396   78482 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files (x86)\intel\icls client, 0x10000100, no-add-slash)
  461   78943 [main] xargs 822 normalize_win32_path: C:\program files (x86)\intel\icls client = normalize_win32_path (C:\program files (x86)\intel\icls client)
  337   79280 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files (x86)/intel/icls client = conv_to_posix_path (C:\program files (x86)\intel\icls client)
  441   79721 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files\intel\icls client, 0x10000100, no-add-slash)
  384   80105 [main] xargs 822 normalize_win32_path: C:\program files\intel\icls client = normalize_win32_path (C:\program files\intel\icls client)
  406   80511 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files/intel/icls client = conv_to_posix_path (C:\program files\intel\icls client)
  501   81012 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\windows\system32, 0x10000100, no-add-slash)
  241   81253 [main] xargs 822 normalize_win32_path: C:\windows\system32 = normalize_win32_path (C:\windows\system32)
  218   81471 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/windows/system32 = conv_to_posix_path (C:\windows\system32)
 2438   83909 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\windows, 0x10000100, no-add-slash)
  321   84230 [main] xargs 822 normalize_win32_path: C:\windows = normalize_win32_path (C:\windows)
  505   84735 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/windows = conv_to_posix_path (C:\windows)
  309   85044 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\windows\system32\wbem, 0x10000100, no-add-slash)
  216   85260 [main] xargs 822 normalize_win32_path: C:\windows\system32\wbem = normalize_win32_path (C:\windows\system32\wbem)
  394   85654 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/windows/system32/wbem = conv_to_posix_path (C:\windows\system32\wbem)
  483   86137 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\windows\system32\windowspowershell\v1.0, 0x10000100, no-add-slash)
  223   86360 [main] xargs 822 normalize_win32_path: C:\windows\system32\windowspowershell\v1.0 = normalize_win32_path (C:\windows\system32\windowspowershell\v1.0)
  214   86574 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/windows/system32/windowspowershell/v1.0 = conv_to_posix_path (C:\windows\system32\windowspowershell\v1.0)
  252   86826 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files\intel\intel(r) management engine components\dal, 0x10000100, no-add-slash)
  208   87034 [main] xargs 822 normalize_win32_path: C:\program files\intel\intel(r) management engine components\dal = normalize_win32_path (C:\program files\intel\intel(r) management engine components\dal)
  209   87243 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files/intel/intel(r) management engine components/dal = conv_to_posix_path (C:\program files\intel\intel(r) management engine components\dal)
  209   87452 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files\intel\intel(r) management engine components\ipt, 0x10000100, no-add-slash)
  247   87699 [main] xargs 822 normalize_win32_path: C:\program files\intel\intel(r) management engine components\ipt = normalize_win32_path (C:\program files\intel\intel(r) management engine components\ipt)
  213   87912 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files/intel/intel(r) management engine components/ipt = conv_to_posix_path (C:\program files\intel\intel(r) management engine components\ipt)
  212   88124 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files (x86)\intel\intel(r) management engine components\dal, 0x10000100, no-add-slash)
  204   88328 [main] xargs 822 normalize_win32_path: C:\program files (x86)\intel\intel(r) management engine components\dal = normalize_win32_path (C:\program files (x86)\intel\intel(r) management engine components\dal)
  221   88549 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files (x86)/intel/intel(r) management engine components/dal = conv_to_posix_path (C:\program files (x86)\intel\intel(r) management engine components\dal)
  229   88778 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files (x86)\intel\intel(r) management engine components\ipt, 0x10000100, no-add-slash)
  205   88983 [main] xargs 822 normalize_win32_path: C:\program files (x86)\intel\intel(r) management engine components\ipt = normalize_win32_path (C:\program files (x86)\intel\intel(r) management engine components\ipt)
  206   89189 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files (x86)/intel/intel(r) management engine components/ipt = conv_to_posix_path (C:\program files (x86)\intel\intel(r) management engine components\ipt)
  239   89428 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\program files (x86)\nvidia corporation\physx\common, 0x10000100, no-add-slash)
  352   89780 [main] xargs 822 normalize_win32_path: C:\program files (x86)\nvidia corporation\physx\common = normalize_win32_path (C:\program files (x86)\nvidia corporation\physx\common)
  227   90007 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/program files (x86)/nvidia corporation/physx/common = conv_to_posix_path (C:\program files (x86)\nvidia corporation\physx\common)
  423   90430 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINDOWS\system32, 0x10000100, no-add-slash)
  408   90838 [main] xargs 822 normalize_win32_path: C:\WINDOWS\system32 = normalize_win32_path (C:\WINDOWS\system32)
  343   91181 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS/system32 = conv_to_posix_path (C:\WINDOWS\system32)
  439   91620 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINDOWS, 0x10000100, no-add-slash)
  348   91968 [main] xargs 822 normalize_win32_path: C:\WINDOWS = normalize_win32_path (C:\WINDOWS)
  341   92309 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS = conv_to_posix_path (C:\WINDOWS)
  337   92646 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINDOWS\System32\Wbem, 0x10000100, no-add-slash)
  429   93075 [main] xargs 822 normalize_win32_path: C:\WINDOWS\System32\Wbem = normalize_win32_path (C:\WINDOWS\System32\Wbem)
  317   93392 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS/System32/Wbem = conv_to_posix_path (C:\WINDOWS\System32\Wbem)
  360   93752 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINDOWS\System32\WindowsPowerShell\v1.0, 0x10000100, no-add-slash)
  331   94083 [main] xargs 822 normalize_win32_path: C:\WINDOWS\System32\WindowsPowerShell\v1.0 = normalize_win32_path (C:\WINDOWS\System32\WindowsPowerShell\v1.0)
  235   94318 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0 = conv_to_posix_path (C:\WINDOWS\System32\WindowsPowerShell\v1.0)
  321   94639 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINDOWS\System32\OpenSSH, 0x10000100, no-add-slash)
  453   95092 [main] xargs 822 normalize_win32_path: C:\WINDOWS\System32\OpenSSH = normalize_win32_path (C:\WINDOWS\System32\OpenSSH)
  313   95405 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS/System32/OpenSSH = conv_to_posix_path (C:\WINDOWS\System32\OpenSSH)
  347   95752 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\Program Files (x86)\Windows Live\Shared, 0x10000100, no-add-slash)
  314   96066 [main] xargs 822 normalize_win32_path: C:\Program Files (x86)\Windows Live\Shared = normalize_win32_path (C:\Program Files (x86)\Windows Live\Shared)
  225   96291 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/Program Files (x86)/Windows Live/Shared = conv_to_posix_path (C:\Program Files (x86)\Windows Live\Shared)
  318   96609 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\Program Files\dotnet, 0x10000100, no-add-slash)
  240   96849 [main] xargs 822 normalize_win32_path: C:\Program Files\dotnet = normalize_win32_path (C:\Program Files\dotnet)
  191   97040 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/Program Files/dotnet = conv_to_posix_path (C:\Program Files\dotnet)
  333   97373 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (C:\Users\bruce\AppData\Local\Microsoft\WindowsApps, 0x10000100, no-add-slash)
  305   97678 [main] xargs 822 normalize_win32_path: C:\Users\bruce\AppData\Local\Microsoft\WindowsApps = normalize_win32_path (C:\Users\bruce\AppData\Local\Microsoft\WindowsApps)
  269   97947 [main] xargs 822 mount_info::conv_to_posix_path: /cygdrive/c/Users/bruce/AppData/Local/Microsoft/WindowsApps = conv_to_posix_path (C:\Users\bruce\AppData\Local\Microsoft\WindowsApps)
  225   98172 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\bin, 0x10000100, no-add-slash)
  341   98513 [main] xargs 822 normalize_win32_path: D:\cygwin64\bin = normalize_win32_path (D:\cygwin64\bin)
  328   98841 [main] xargs 822 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (D:\cygwin64\bin)
  375   99216 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\usr\local\sbin, 0x10000100, no-add-slash)
  232   99448 [main] xargs 822 normalize_win32_path: D:\cygwin64\usr\local\sbin = normalize_win32_path (D:\cygwin64\usr\local\sbin)
  237   99685 [main] xargs 822 mount_info::conv_to_posix_path: /usr/local/sbin = conv_to_posix_path (D:\cygwin64\usr\local\sbin)
  329  100014 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\usr\sbin, 0x10000100, no-add-slash)
  449  100463 [main] xargs 822 normalize_win32_path: D:\cygwin64\usr\sbin = normalize_win32_path (D:\cygwin64\usr\sbin)
  381  100844 [main] xargs 822 mount_info::conv_to_posix_path: /usr/sbin = conv_to_posix_path (D:\cygwin64\usr\sbin)
  288  101132 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\sbin, 0x10000100, no-add-slash)
  223  101355 [main] xargs 822 normalize_win32_path: D:\cygwin64\sbin = normalize_win32_path (D:\cygwin64\sbin)
  219  101574 [main] xargs 822 mount_info::conv_to_posix_path: /sbin = conv_to_posix_path (D:\cygwin64\sbin)
  353  101927 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\home\bruce\bin, 0x10000100, no-add-slash)
  314  102241 [main] xargs 822 normalize_win32_path: D:\cygwin64\home\bruce\bin = normalize_win32_path (D:\cygwin64\home\bruce\bin)
  305  102546 [main] xargs 822 mount_info::conv_to_posix_path: /home/bruce/bin = conv_to_posix_path (D:\cygwin64\home\bruce\bin)
 1224  103770 [main] xargs 822 win_env::add_cache: posix /usr/local/bin:/usr/bin:/cygdrive/c/program files (x86)/intel/icls client:/cygdrive/c/program files/intel/icls client:/cygdrive/c/windows/system32:/cygdrive/c/windows:/cygdrive/c/windows/system32/wbem:/cygdrive/c/windows/system32/windowspowershell/v1.0:/cygdrive/c/program files/intel/intel(r) management engine components/dal:/cygdrive/c/program files/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/dal:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/nvidia corporation/physx/common:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/WINDOWS/System32/OpenSSH:/cygdrive/c/Program Files (x86)/Windows Live/Shared:/cygdrive/c/Program Files/dotnet:/cygdrive/c/Users/bruce/AppData/Local/Microsoft/WindowsApps:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/bruce/bin
  365  104135 [main] xargs 822 win_env::add_cache: native PATH=D:\cygwin64\usr\local\bin;D:\cygwin64\bin;C:\program files (x86)\intel\icls client;C:\program files\intel\icls client;C:\windows\system32;C:\windows;C:\windows\system32\wbem;C:\windows\system32\windowspowershell\v1.0;C:\program files\intel\intel(r) management engine components\dal;C:\program files\intel\intel(r) management engine components\ipt;C:\program files (x86)\intel\intel(r) management engine components\dal;C:\program files (x86)\intel\intel(r) management engine components\ipt;C:\program files (x86)\nvidia corporation\physx\common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\System32\OpenSSH;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\dotnet;C:\Users\bruce\AppData\Local\Microsoft\WindowsApps;D:\cygwin64\bin;D:\cygwin64\usr\local\sbin;D:\cygwin64\usr\sbin;D:\cygwin64\sbin;D:\cygwin64\home\bruce\bin
  323  104458 [main] xargs 822 posify_maybe: env var converted to PATH=/usr/local/bin:/usr/bin:/cygdrive/c/program files (x86)/intel/icls client:/cygdrive/c/program files/intel/icls client:/cygdrive/c/windows/system32:/cygdrive/c/windows:/cygdrive/c/windows/system32/wbem:/cygdrive/c/windows/system32/windowspowershell/v1.0:/cygdrive/c/program files/intel/intel(r) management engine components/dal:/cygdrive/c/program files/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/dal:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/nvidia corporation/physx/common:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/WINDOWS/System32/OpenSSH:/cygdrive/c/Program Files (x86)/Windows Live/Shared:/cygdrive/c/Program Files/dotnet:/cygdrive/c/Users/bruce/AppData/Local/Microsoft/WindowsApps:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/bruce/bin
  712  105170 [main] xargs 822 win32env_to_cygenv: 0xA00001C80: PATH=/usr/local/bin:/usr/bin:/cygdrive/c/program files (x86)/intel/icls client:/cygdrive/c/program files/intel/icls client:/cygdrive/c/windows/system32:/cygdrive/c/windows:/cygdrive/c/windows/system32/wbem:/cygdrive/c/windows/system32/windowspowershell/v1.0:/cygdrive/c/program files/intel/intel(r) management engine components/dal:/cygdrive/c/program files/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/dal:/cygdrive/c/program files (x86)/intel/intel(r) management engine components/ipt:/cygdrive/c/program files (x86)/nvidia corporation/physx/common:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/WINDOWS/System32/OpenSSH:/cygdrive/c/Program Files (x86)/Windows Live/Shared:/cygdrive/c/Program Files/dotnet:/cygdrive/c/Users/bruce/AppData/Local/Microsoft/WindowsApps:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/bruce/bin
  671  105841 [main] xargs 822 win32env_to_cygenv: 0xA00001170: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
  634  106475 [main] xargs 822 win32env_to_cygenv: 0xA000011C0: PRINTER=Microsoft Print to PDF
  672  107147 [main] xargs 822 win32env_to_cygenv: 0xA000011F0: PROCESSOR_ARCHITECTURE=AMD64
  756  107903 [main] xargs 822 win32env_to_cygenv: 0xA00001220: PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
  440  108343 [main] xargs 822 win32env_to_cygenv: 0xA00001270: PROCESSOR_LEVEL=6
  642  108985 [main] xargs 822 win32env_to_cygenv: 0xA00001290: PROCESSOR_REVISION=3a09
  807  109792 [main] xargs 822 win32env_to_cygenv: 0xA000012B0: PROFILEREAD=true
  541  110333 [main] xargs 822 win32env_to_cygenv: 0xA000012D0: PROGRAMFILES=C:\Program Files
  567  110900 [main] xargs 822 win32env_to_cygenv: 0xA00001300: PS1=\[\e[1;34m\]\t \h\[^[(B^[[m\] [\[^[[1m\]\!\[^[(B^[[m\]] \[^[[1m\]\$\[^[(B^[[m\] 
  580  111480 [main] xargs 822 win32env_to_cygenv: 0xA00001360: PSModulePath=C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\
  483  111963 [main] xargs 822 win32env_to_cygenv: 0xA000013B0: PUBLIC=C:\Users\Public
 1756  113719 [main] xargs 822 win32env_to_cygenv: 0xA000013D0: PWD=/etc/setup
  678  114397 [main] xargs 822 win32env_to_cygenv: 0xA000013F0: ProgramData=C:\ProgramData
  486  114883 [main] xargs 822 win32env_to_cygenv: 0xA00001420: ProgramFiles(x86)=C:\Program Files (x86)
  602  115485 [main] xargs 822 win32env_to_cygenv: 0xA00001460: ProgramW6432=C:\Program Files
  483  115968 [main] xargs 822 win32env_to_cygenv: 0xA00001490: RHBZ=/usr/local/FTP.incoming/bugzilla.redhat.com
  454  116422 [main] xargs 822 win32env_to_cygenv: 0xA000014D0: RLWRAP_HOME=/home/bruce/.rlwrap
  459  116881 [main] xargs 822 win32env_to_cygenv: 0xA00002080: SHELL=/bin/bash
  414  117295 [main] xargs 822 win32env_to_cygenv: 0xA000020A0: SHLVL=0
 1862  119157 [main] xargs 822 win32env_to_cygenv: 0xA000020C0: SYSTEMDRIVE=C:
  774  119931 [main] xargs 822 win32env_to_cygenv: 0xA000020E0: SYSTEMROOT=C:\WINDOWS
  531  120462 [main] xargs 822 getwinenv: can't set native for TEMP= since no environ yet
  397  120859 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\tmp, 0x10000000, no-add-slash)
  403  121262 [main] xargs 822 normalize_win32_path: D:\cygwin64\tmp = normalize_win32_path (D:\cygwin64\tmp)
  242  121504 [main] xargs 822 mount_info::conv_to_posix_path: /tmp = conv_to_posix_path (D:\cygwin64\tmp)
  972  122476 [main] xargs 822 win_env::add_cache: posix /tmp
  342  122818 [main] xargs 822 win_env::add_cache: native TEMP=D:\cygwin64\tmp
  277  123095 [main] xargs 822 posify_maybe: env var converted to TEMP=/tmp
 1067  124162 [main] xargs 822 win32env_to_cygenv: 0xA00002160: TEMP=/tmp
  536  124698 [main] xargs 822 win32env_to_cygenv: 0xA00002100: TERM=xterm-256color
  482  125180 [main] xargs 822 win32env_to_cygenv: 0xA00002180: TERM_PROGRAM=mintty
  450  125630 [main] xargs 822 win32env_to_cygenv: 0xA000021A0: TERM_PROGRAM_VERSION=3.7.1
  449  126079 [main] xargs 822 win32env_to_cygenv: 0xA000021D0: TF1=real: %3R  user: %3U  sys: %3S
  479  126558 [main] xargs 822 win32env_to_cygenv: 0xA00002200: TF3=real	%3R
user	%3U
sys	%3S
  574  127132 [main] xargs 822 win32env_to_cygenv: 0xA00002230: TFR=%3R secs.
  455  127587 [main] xargs 822 win32env_to_cygenv: 0xA00002250: TIMEFORMAT=real: %3R  user: %3U  sys: %3S
  870  128457 [main] xargs 822 getwinenv: can't set native for TMP= since no environ yet
  232  128689 [main] xargs 822 mount_info::conv_to_posix_path: conv_to_posix_path (D:\cygwin64\tmp, 0x10000000, no-add-slash)
  182  128871 [main] xargs 822 normalize_win32_path: D:\cygwin64\tmp = normalize_win32_path (D:\cygwin64\tmp)
  177  129048 [main] xargs 822 mount_info::conv_to_posix_path: /tmp = conv_to_posix_path (D:\cygwin64\tmp)
  522  129570 [main] xargs 822 win_env::add_cache: posix /tmp
  189  129759 [main] xargs 822 win_env::add_cache: native TMP=D:\cygwin64\tmp
  194  129953 [main] xargs 822 posify_maybe: env var converted to TMP=/tmp
  570  130523 [main] xargs 822 win32env_to_cygenv: 0xA000022F0: TMP=/tmp
  702  131225 [main] xargs 822 win32env_to_cygenv: 0xA00002290: TZ=PST8PDT
  535  131760 [main] xargs 822 win32env_to_cygenv: 0xA00002310: USER=bruce
  414  132174 [main] xargs 822 win32env_to_cygenv: 0xA00002330: USERDOMAIN=BUGS-INSIDER
  428  132602 [main] xargs 822 win32env_to_cygenv: 0xA00002350: USERDOMAIN_ROAMINGPROFILE=BUGS-INSIDER
  924  133526 [main] xargs 822 win32env_to_cygenv: 0xA00002380: USERNAME=bruce
  415  133941 [main] xargs 822 win32env_to_cygenv: 0xA000023A0: USERPROFILE=C:\Users\bruce
  979  134920 [main] xargs 822 win32env_to_cygenv: 0xA000023D0: WIKI=/downloads/sites/en.wikipedia.org
  452  135372 [main] xargs 822 win32env_to_cygenv: 0xA00002400: WINDIR=C:\WINDOWS
 1176  136548 [main] xargs 822 win32env_to_cygenv: 0xA00002420: WINEPREFIX=/vm/wine
 1220  137768 [main] xargs 822 win32env_to_cygenv: 0xA00002440: WOM=/usr/local/FTP.incoming/WIKI-O-MATIC
  467  138235 [main] xargs 822 win32env_to_cygenv: 0xA00002480: YT=/usr/local/FTP.incoming/www.youtube.com
 1698  139933 [main] xargs 822 win32env_to_cygenv: 0xA000024C0: _=/usr/bin/strace
  645  140578 [main] xargs 822 win32env_to_cygenv: 0xA000024E0: __COMPAT_LAYER=RunAsAdmin Installer
  688  141266 [main] xargs 822 win32env_to_cygenv: 0xA00002510: __GL_THREADED_OPTIMIZATIONS=1
  671  141937 [main] xargs 822 win32env_to_cygenv: 0xA00002540: configsetroot=C:\WINDOWS\ConfigSetRoot
  450  142387 [main] xargs 822 win32env_to_cygenv: 0xA00002570: q=?
  690  143077 [main] xargs 822 pinfo_init: Set nice to 0
  240  143317 [main] xargs 822 pinfo_init: pid 822, pgid 822, process_state 0x20041
  542  143859 [main] xargs 822 App version:  3004.0, api: 0.341
  286  144145 [main] xargs 822 DLL version:  3006.0, api: 0.355
  361  144506 [main] xargs 822 DLL build:    2024-03-27 21:28
  449  144955 [main] xargs 822 dtable::extend: size 32, fds 0x800006BB0
 1363  146318 [main] xargs 822 transport_layer_pipes::connect: Try to connect to named pipe: \\.\pipe\cygwin-f76db13c759b51fa-lpc
  682  147000 [main] xargs 822 transport_layer_pipes::connect: Error opening the pipe (2)
  800  147800 [main] xargs 822 client_request::make_request: cygserver un-available
 6505  154305 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <Local account and member of Administrators group:S-1-5-114:114:>
 1489  155794 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <INTERACTIVE:S-1-5-4:4:>
  710  156504 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <CONSOLE LOGON:S-1-2-1:66049:>
  681  157185 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <Authenticated Users:S-1-5-11:11:>
  730  157915 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <This Organization:S-1-5-15:15:>
  671  158586 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <Local account:S-1-5-113:113:>
  967  159553 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <CurrentSession:S-1-5-5-0-179250:4095:>
  713  160266 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <LOCAL:S-1-2-0:66048:>
  807  161073 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <NTLM Authentication:S-1-5-64-10:262154:>
  777  161850 [main] xargs 822 pwdgrp::fetch_account_from_windows: line: <High Mandatory Level:S-1-16-12288:405504:>
  408  162258 [main] xargs 822 cygheap_user::ontherange: what 2, pw 0x800006E40
  585  162843 [main] xargs 822 cygheap_user::ontherange: HOME is already in the environment /home/bruce
 1282  164125 [main] xargs 822 build_argv: argv[0] = 'xargs'
  297  164422 [main] xargs 822 build_argv: argv[1] = '-t'
  292  164714 [main] xargs 822 build_argv: argv[2] = '--show-limits'
  193  164907 [main] xargs 822 build_argv: argc 3
  559  165466 [main] xargs 822 normalize_posix_path: src /dev/null
  473  165939 [main] xargs 822 normalize_posix_path: /dev/null = normalize_posix_path (/dev/null)
  217  166156 [main] xargs 822 mount_info::conv_to_win32_path: conv_to_win32_path (/dev/null)
  213  166369 [main] xargs 822 mount_info::conv_to_win32_path: src_path /dev/null, dst \Device\Null, flags 0x0, rc 0
  613  166982 [main] xargs 822 build_fh_pc: fh 0x8000085B0, dev 00010003
  211  167193 [main] xargs 822 fhandler_base::set_flags: flags 0x10000, supplied_bin 0x0
  207  167400 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  228  167628 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  466  168094 [main] xargs 822 fhandler_base::init: created new fhandler_base for handle 0x3E0, bin 1
  922  169016 [main] xargs 822 open_shared: name f76db13c759b51fa-cons0xB030C.0, shared 0x1A0030000 (wanted 0x1A0030000), h 0x3E8, m 3, created 1
--- Process 7020 (pid: 822) loaded C:\Windows\System32\user32.dll at 00007ff99be60000
--- Process 7020 (pid: 822) loaded C:\Windows\System32\win32u.dll at 00007ff99bb00000
--- Process 7020 (pid: 822) loaded C:\Windows\System32\gdi32.dll at 00007ff99c090000
--- Process 7020 (pid: 822) loaded C:\Windows\System32\gdi32full.dll at 00007ff99b9e0000
--- Process 7020 (pid: 822) loaded C:\Windows\System32\msvcp_win.dll at 00007ff99b3f0000
--- Process 7020 (pid: 822) loaded C:\Windows\System32\ucrtbase.dll at 00007ff99b8c0000
--- Process 7020 (pid: 822) loaded C:\Windows\System32\imm32.dll at 00007ff99d1c0000
16809  185825 [main] xargs 822 open_shared: name f76db13c759b51fa-cons0xB030C.0, shared 0x1A0040000 (wanted 0x1A0040000), h 0x1D0, m 6, created 0
  807  186632 [main] xargs 822 build_fh_pc: created an archetype (0x800008BA0) for /dev/cons0(3/0)
  223  186855 [main] xargs 822 build_fh_pc: fh 0x800008820, dev 00030000
 1626  188481 [main] xargs 822 fhandler_console::open: opened conin$ 0x1DC, conout$ 0x1E0
--- Process 7020 (pid: 822) thread 6744 created
 1030  189511 [consm] xargs 822 cygthread::stub: thread 'consm', id 0x1A58, stack_ptr 0x2CECCB0
  224  189735 [consm] xargs 822 SetThreadName: SetThreadDescription() failed. 00000000 10000000
  526  190261 [main] xargs 822 fhandler_base::open_with_arch: line 451:  /dev/cons0<0x800008BA0> usecount + 1 = 1
  309  190570 [main] xargs 822 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
  723  191293 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  241  191534 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  262  191796 [main] xargs 822 _pinfo::set_ctty: old no ctty, ctty device number 0xFFFFFFFF, tc.ntty device number 0x30000 flags & O_NOCTTY 0x0
  200  191996 [main] xargs 822 _pinfo::set_ctty: cygheap->ctty 0x0, archetype 0x800008BA0
  225  192221 [main] xargs 822 _pinfo::set_ctty: ctty was NULL
  288  192509 [main] xargs 822 _pinfo::set_ctty: line 555:  /dev/cons0<0x800008BA0> usecount + 1 = 2
  545  193054 [main] xargs 822 _pinfo::set_ctty: /dev/cons0 ctty, usecount 2
  307  193361 [main] xargs 822 _pinfo::set_ctty: attaching ctty /dev/cons0 sid 822, pid 822, pgid 822, tty->pgid 822, tty->sid 0
  286  193647 [main] xargs 822 _pinfo::set_ctty: cygheap->ctty now 0x800008BA0, archetype 0x800008BA0
  263  193910 [main] xargs 822 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
  219  194129 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  211  194340 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  235  194575 [main] xargs 822 _pinfo::set_ctty: old ctty /dev/cons0, ctty device number 0x30000, tc.ntty device number 0x30000 flags & O_NOCTTY 0x0
  248  194823 [main] xargs 822 _pinfo::set_ctty: attaching ctty /dev/cons0 sid 822, pid 822, pgid 822, tty->pgid 822, tty->sid 822
  248  195071 [main] xargs 822 _pinfo::set_ctty: cygheap->ctty now 0x800008BA0, archetype 0x800008BA0
 1060  196131 [main] xargs 822 build_fh_pc: found an archetype for (null)(3/0) io_handle 0x1DC
  224  196355 [main] xargs 822 build_fh_pc: fh 0x800008F80, dev 00030000
  221  196576 [main] xargs 822 fhandler_base::open_with_arch: line 471:  /dev/cons0<0x800008BA0> usecount + 1 = 3
  266  196842 [main] xargs 822 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
  232  197074 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  226  197300 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  245  197545 [main] xargs 822 _pinfo::set_ctty: old ctty /dev/cons0, ctty device number 0x30000, tc.ntty device number 0x30000 flags & O_NOCTTY 0x0
  248  197793 [main] xargs 822 _pinfo::set_ctty: attaching ctty /dev/cons0 sid 822, pid 822, pgid 822, tty->pgid 822, tty->sid 822
  242  198035 [main] xargs 822 _pinfo::set_ctty: cygheap->ctty now 0x800008BA0, archetype 0x800008BA0
  230  198265 [main] xargs 822 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
  246  198511 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  234  198745 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  235  198980 [main] xargs 822 _pinfo::set_ctty: old ctty /dev/cons0, ctty device number 0x30000, tc.ntty device number 0x30000 flags & O_NOCTTY 0x0
  253  199233 [main] xargs 822 _pinfo::set_ctty: attaching ctty /dev/cons0 sid 822, pid 822, pgid 822, tty->pgid 822, tty->sid 822
  234  199467 [main] xargs 822 _pinfo::set_ctty: cygheap->ctty now 0x800008BA0, archetype 0x800008BA0
  801  200268 [main] xargs 822 SetThreadName: SetThreadDescription() failed. 00000000 10000000
 2832  203100 [main] xargs 822 __set_errno: void dll_crt0_1(void*):955 setting errno 0
 3385  206485 [main] xargs 822 normalize_posix_path: src /proc/self/fd
  321  206806 [main] xargs 822 normalize_posix_path: /proc/self/fd = normalize_posix_path (/proc/self/fd)
  196  207002 [main] xargs 822 mount_info::conv_to_win32_path: conv_to_win32_path (/proc/self/fd)
  276  207278 [main] xargs 822 fhandler_proc::get_proc_fhandler: get_proc_fhandler(/proc/self/fd)
  330  207608 [main] xargs 822 mount_info::conv_to_win32_path: src_path /proc/self/fd, dst /proc/self/fd, flags 0x0, rc 0
  273  207881 [main] xargs 822 build_fh_pc: fh 0x800009550, dev 000000FF
  246  208127 [main] xargs 822 fhandler_proc::exists: exists (/proc/self/fd)
  248  208375 [main] xargs 822 mount_info::conv_to_win32_path: conv_to_win32_path (/proc/self)
  247  208622 [main] xargs 822 fhandler_proc::get_proc_fhandler: get_proc_fhandler(/proc/self)
  326  208948 [main] xargs 822 mount_info::conv_to_win32_path: src_path /proc/self, dst /proc/self, flags 0x0, rc 0
  282  209230 [main] xargs 822 build_fh_pc: fh 0x800009550, dev 000000FF
  299  209529 [main] xargs 822 fhandler_proc::exists: exists (/proc/self)
  291  209820 [main] xargs 822 getpid: 822 = getpid()
  299  210119 [main] xargs 822 normalize_posix_path: src /proc/822/fd
  329  210448 [main] xargs 822 normalize_posix_path: /proc/822/fd = normalize_posix_path (/proc/822/fd)
  231  210679 [main] xargs 822 mount_info::conv_to_win32_path: conv_to_win32_path (/proc/822/fd)
  282  210961 [main] xargs 822 fhandler_proc::get_proc_fhandler: get_proc_fhandler(/proc/822/fd)
  198  211159 [main] xargs 822 mount_info::conv_to_win32_path: src_path /proc/822/fd, dst /proc/822/fd, flags 0x0, rc 0
  295  211454 [main] xargs 822 build_fh_pc: fh 0x800009550, dev 000000FE
  281  211735 [main] xargs 822 fhandler_process::exists: exists (/proc/822/fd)
  309  212044 [main] xargs 822 build_fh_pc: fh 0x800009550, dev 000000FE
 1083  213127 [main] xargs 822 fhandler_base::set_flags: flags 0x10000, supplied_bin 0x0
  249  213376 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  258  213634 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  272  213906 [main] xargs 822 fhandler_base::set_flags: flags 0x10000, supplied_bin 0x0
  253  214159 [main] xargs 822 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
  218  214377 [main] xargs 822 fhandler_base::set_flags: filemode set to binary
  300  214677 [main] xargs 822 fhandler_process::open: 1 = fhandler_proc::open(0x0, 00)
  238  214915 [main] xargs 822 fhandler_virtual::opendir: 0xA00017B30 = opendir (/proc/822/fd)
  312  215227 [main] xargs 822 fhandler_process::readdir: 0 = readdir(0xA00017B30, 0xA00017BA0) (.)
  233  215460 [main] xargs 822 fhandler_process::readdir: 0 = readdir(0xA00017B30, 0xA00017BA0) (..)
  304  215764 [main] xargs 822 normalize_posix_path: src /proc/822/fd/..
  221  215985 [main] xargs 822 normalize_posix_path: checking /proc/822/fd before '..'
  440  216425 [main] xargs 822 normalize_posix_path: src /proc/822/fd
  250  216675 [main] xargs 822 normalize_posix_path: /proc/822/fd = normalize_posix_path (/proc/822/fd)
  323  216998 [main] xargs 822 mount_info::conv_to_win32_path: conv_to_win32_path (/proc/822/fd)
  291  217289 [main] xargs 822 fhandler_proc::get_proc_fhandler: get_proc_fhandler(/proc/822/fd)
  398  217687 [main] xargs 822 mount_info::conv_to_win32_path: src_path /proc/822/fd, dst /proc/822/fd, flags 0x0, rc 0
  360  218047 [main] xargs 822 build_fh_pc: fh 0x800009910, dev 000000FE
  257  218304 [main] xargs 822 fhandler_process::exists: exists (/proc/822/fd)
  401  218705 [main] xargs 822 normalize_posix_path: /proc/822/ = normalize_posix_path (/proc/822/fd/..)
  332  219037 [main] xargs 822 mount_info::conv_to_win32_path: conv_to_win32_path (/proc/822)
  334  219371 [main] xargs 822 fhandler_proc::get_proc_fhandler: get_proc_fhandler(/proc/822)
  381  219752 [main] xargs 822 mount_info::conv_to_win32_path: src_path /proc/822, dst /proc/822, flags 0x0, rc 0
  309  220061 [main] xargs 822 build_fh_pc: fh 0x800009910, dev 000000FE
  325  220386 [main] xargs 822 fhandler_process::exists: exists (/proc/822)
  316  220702 [main] xargs 822 build_fh_pc: fh 0x800009910, dev 000000FE
  303  221005 [main] xargs 822 stat_worker: (/proc/822, 0x7FFFFC7B0, 0x800009910), file_attributes 16
  787  221792 [main] xargs 822 fhandler_process::exists: exists (/proc/822)
  135  221927 [main] xargs 822 time: 1712043393 = time(0x0)
  305  222232 [main] xargs 822 stat_worker: 0 = (/proc/822,0x7FFFFC7B0)
  223  222455 [main] xargs 822 fhandler_process::readdir: 0 = readdir(0xA00017B30, 0xA00017BA0) (cmdline)
 7323  229778 [main] xargs 822 fhandler_console::write: 0x7FFFFCC70, 5
  867  230645 [main] xargs 822 fhandler_console::write: 5 = fhandler_console::write(...)
  258  230903 [main] xargs 822 write: 5 = write(2, 0x7FFFFCC70, 5)
  551  231454 [main] xargs 822 fhandler_console::write: 0x7FF96353DC38, 1
  630  232084 [main] xargs 822 fhandler_console::write: 1 = fhandler_console::write(...)
  201  232285 [main] xargs 822 write: 1 = write(2, 0x7FF96353DC38, 1)
  559  232844 [main] xargs 822 fhandler_console::write: 0x7FF96353DC34, 1
  557  233401 [main] xargs 822 fhandler_console::write: 1 = fhandler_console::write(...)
  213  233614 [main] xargs 822 write: 1 = write(2, 0x7FF96353DC34, 1)
 1390  235004 [main] xargs 822 fhandler_console::write: 0x10040E0D3, 18
  599  235603 [main] xargs 822 fhandler_console::write: 18 = fhandler_console::write(...)
  228  235831 [main] xargs 822 write: 18 = write(2, 0x10040E0D3, 18)
  613  236444 [main] xargs 822 fhandler_console::write: 0x1004131C0, 7
  627  237071 [main] xargs 822 fhandler_console::write: 7 = fhandler_console::write(...)
  173  237244 [main] xargs 822 write: 7 = write(2, 0x1004131C0, 7)
  756  238000 [main] xargs 822 fhandler_console::write: 0x10040E0E7, 4
  691  238691 [main] xargs 822 fhandler_console::write: 4 = fhandler_console::write(...)
  266  238957 [main] xargs 822 write: 4 = write(2, 0x10040E0E7, 4)
  827  239784 [main] xargs 822 fhandler_console::write: 0xA00017D50, 7
  703  240487 [main] xargs 822 fhandler_console::write: 7 = fhandler_console::write(...)
  226  240713 [main] xargs 822 write: 7 = write(2, 0xA00017D50, 7)
 2297  243010 [main] xargs 822 fhandler_console::write: 0x7FF9635E3EEF, 1
  690  243700 [main] xargs 822 fhandler_console::write: 1 = fhandler_console::write(...)
  215  243915 [main] xargs 822 write: 1 = write(2, 0x7FF9635E3EEF, 1)
 2223  246138 [main] xargs 822 do_exit: do_exit (256), exit_state 0
  208  246346 [main] xargs 822 void: 0x0 = signal (20, 0x1)
  207  246553 [main] xargs 822 void: 0x0 = signal (1, 0x1)
  247  246800 [main] xargs 822 void: 0x0 = signal (2, 0x1)
  212  247012 [main] xargs 822 void: 0x0 = signal (3, 0x1)
  218  247230 [main] xargs 822 fhandler_base::close: closing '/dev/null' handle 0x3E0
  247  247477 [main] xargs 822 fhandler_base::close_with_arch: line 1276:  /dev/cons0<0x800008BA0> usecount + -1 = 2
  218  247695 [main] xargs 822 fhandler_base::close_with_arch: not closing archetype
  210  247905 [main] xargs 822 fhandler_base::close_with_arch: line 1276:  /dev/cons0<0x800008BA0> usecount + -1 = 1
  206  248111 [main] xargs 822 fhandler_base::close_with_arch: not closing archetype
  219  248330 [main] xargs 822 init_cygheap::close_ctty: closing cygheap->ctty 0x800008BA0
  205  248535 [main] xargs 822 fhandler_base::close_with_arch: closing passed in archetype 0x0, usecount 0
  229  248764 [main] xargs 822 fhandler_console::close: closing: 0x1DC, 0x1E0
35610  284374 [main] xargs 822 fhandler_console::free_console: freed console, res 1
  247  284621 [main] xargs 822 dtable::delete_archetype: deleting element 0 for /dev/cons0(3/0)
  237  284858 [main] xargs 822 getpid: 822 = getpid()
  202  285060 [main] xargs 822 proc_terminate: child_procs count 0
  205  285265 [main] xargs 822 proc_terminate: leaving
  187  285452 [main] xargs 822 pinfo::exit: Calling dlls.cleanup_forkables n 0x100, exitcode 0x1
  178  285630 [main] xargs 822 pinfo::exit: Calling ExitProcess n 0x100, exitcode 0x1
--- Process 7020 (pid: 822) thread 9828 exited with status 0x1
--- Process 7020 (pid: 822) thread 7364 exited with status 0x1
--- Process 7020 (pid: 822) thread 9784 exited with status 0x1
--- Process 7020 (pid: 822) thread 9796 exited with status 0x1
--- Process 7020 (pid: 822) thread 6744 exited with status 0x1
--- Process 7020 (pid: 822) exited with status 0x1

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02  3:36 xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9 Bruce Jerrick
  2024-04-02  6:18 ` Brian Inglis
  2024-04-02  7:48 ` Bruce Jerrick
@ 2024-04-02  8:42 ` Bruce Jerrick
  2024-04-02 10:44   ` Corinna Vinschen
  2024-04-02 15:38 ` Bruce Jerrick
  3 siblings, 1 reply; 9+ messages in thread
From: Bruce Jerrick @ 2024-04-02  8:42 UTC (permalink / raw)
  To: cygwin

I just did binary-search regression tests on the available
old test versions, and found this:

OK:  cygwin-3.6.0-0.86.gbfe2790e7bc4.tar.xz
BAD: cygwin-3.6.0-0.92.g8bd6ba8f16ec.tar.xz

- Bruce

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02  8:42 ` Bruce Jerrick
@ 2024-04-02 10:44   ` Corinna Vinschen
  2024-04-02 13:13     ` Corinna Vinschen
  0 siblings, 1 reply; 9+ messages in thread
From: Corinna Vinschen @ 2024-04-02 10:44 UTC (permalink / raw)
  To: cygwin

On Apr  2 01:42, Bruce Jerrick via Cygwin wrote:
> I just did binary-search regression tests on the available
> old test versions, and found this:
> 
> OK:  cygwin-3.6.0-0.86.gbfe2790e7bc4.tar.xz
> BAD: cygwin-3.6.0-0.92.g8bd6ba8f16ec.tar.xz

Thanks, I found the offending patch, but I have to think about a
solution.

Stay tuned,
Corinna

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02 10:44   ` Corinna Vinschen
@ 2024-04-02 13:13     ` Corinna Vinschen
  0 siblings, 0 replies; 9+ messages in thread
From: Corinna Vinschen @ 2024-04-02 13:13 UTC (permalink / raw)
  To: cygwin

On Apr  2 12:44, Corinna Vinschen via Cygwin wrote:
> On Apr  2 01:42, Bruce Jerrick via Cygwin wrote:
> > I just did binary-search regression tests on the available
> > old test versions, and found this:
> > 
> > OK:  cygwin-3.6.0-0.86.gbfe2790e7bc4.tar.xz
> > BAD: cygwin-3.6.0-0.92.g8bd6ba8f16ec.tar.xz
> 
> Thanks, I found the offending patch, but I have to think about a
> solution.
> 
> Stay tuned,
> Corinna

Just building cygwin-3.6.0-0.109.ga0a25849f9dd, should be up in
an hour or two. Please give it a try.


Thanks,
Corinna

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02  3:36 xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9 Bruce Jerrick
                   ` (2 preceding siblings ...)
  2024-04-02  8:42 ` Bruce Jerrick
@ 2024-04-02 15:38 ` Bruce Jerrick
  2024-04-02 18:33   ` Corinna Vinschen
  3 siblings, 1 reply; 9+ messages in thread
From: Bruce Jerrick @ 2024-04-02 15:38 UTC (permalink / raw)
  To: cygwin

'xargs' is back to working with cygwin-3.6.0-0.109.ga0a25849f9dd .

Thanks for the quick fix!
-- Bruce

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9
  2024-04-02 15:38 ` Bruce Jerrick
@ 2024-04-02 18:33   ` Corinna Vinschen
  0 siblings, 0 replies; 9+ messages in thread
From: Corinna Vinschen @ 2024-04-02 18:33 UTC (permalink / raw)
  To: cygwin

On Apr  2 08:38, Bruce Jerrick via Cygwin wrote:
> 'xargs' is back to working with cygwin-3.6.0-0.109.ga0a25849f9dd .
> 
> Thanks for the quick fix!
> -- Bruce

Thanks for the report and testing!


Corinna

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-04-02 18:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-02  3:36 xargs completely broken under cygwin 3.6.0-0.108.gb7f5a33200a9 Bruce Jerrick
2024-04-02  6:18 ` Brian Inglis
2024-04-02  7:48 ` Bruce Jerrick
2024-04-02  8:08   ` Bruce Jerrick
2024-04-02  8:42 ` Bruce Jerrick
2024-04-02 10:44   ` Corinna Vinschen
2024-04-02 13:13     ` Corinna Vinschen
2024-04-02 15:38 ` Bruce Jerrick
2024-04-02 18:33   ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).