ssh-add -l hangs under cygwin test 3.6.0-0.139.g...

2024-06-28 Thread Brian Inglis via Cygwin
Hi folks, Installed cygwin test to try to diagnose another issue - but not involved there. Attempting to cygport upload - just hung without start ftp connection. Reran cygport --debug upload and command hanging was ssh-add -l! Confirmed by rerunning command ssh-add -l from bash. Killed

Updated: mintty 3.7.3

2024-06-28 Thread Thomas Wolff
I have uploaded mintty 3.7.3 with the following changes: Misc   * Fix version tag and package building problems. Configuration   * Prevent saving changed settings to /etc/minttyrc. The homepage is at http://mintty.github.io/ It also links to the issue tracker. -- Thomas --

libvpl 2.12.0-1

2024-06-28 Thread Takashi Yano via Cygwin-announce
The following packages have been uploaded to the Cygwin distribution: * libvpl-2.12.0-1 * libvpl-devel-2.12.0-1 This package provides the headers and the library which loads Intel MediaSDK dlls dynamically. The codec itself is implemented in the dlls and the Intel GPU. -- ***

Running multiple instances of bash script fails

2024-06-28 Thread David Koski via Cygwin
I developed a bash script to get SMART stats from hard drives and it has been working with success for years.  It is working for both Linux and Windows using Cygwin.  Recently I ran into a new installation of this script on a Server 2022 Standard host and found it failed.  On closer

Re: cygwin application hangs on closing console

2024-06-28 Thread Takashi Yano via Cygwin
On Fri, 28 Jun 2024 21:17:26 +0900 Takashi Yano wrote: > Sorry for very late replay. > > On Mon, 3 Jun 2024 15:20:32 +0200 > Johannes Khoshnazar-Thoma wrote: > > We did more testing and it looks like the name of the event > > that signals console master thread start and end is shared between > >

Re: cygwin application hangs on closing console

2024-06-28 Thread Takashi Yano via Cygwin
Sorry for very late replay. On Mon, 3 Jun 2024 15:20:32 +0200 Johannes Khoshnazar-Thoma wrote: > We did more testing and it looks like the name of the event > that signals console master thread start and end is shared between > unrelated processes (it uses the console minor which is always (?) >

[PATCH] Cygwin: dsp: Fix incorrect openflags when opening multiple /dev/dsp

2024-06-28 Thread Takashi Yano
Previously, the following steps failed with error: 1) Open /dev/dsp with O_RDONLY 2) Open /dev/dsp with O_WRONLY 3) Issue SNDCTL_DSP_GETOSPACE ioctl() for 2) This is because IS_WRITE() returns false for 2) due to incorrect openflags handling in archetype instance. This patch fixes the issue