RE: stderr output from .NET apps causes shell hangs when cygwin is not running in Windows console

2012-06-08 Thread James Johnston
And only now I've found the messages talking about similar issues after fruitless Google searches. Same thing happens to me after I buy hardware. The problem appears fixed in the latest snapshot of cygwin1.dll. Indeed it was; the problem happened for at least two other people on the mailing

stderr output from .NET apps causes shell hangs when cygwin is not running in Windows console

2012-06-07 Thread Barry Kelly
This C# app: class err { static void Main() { System.Console.Error.WriteLine(err); } } compiled with any csc.exe: $(cygpath -u $WINDIR)/Microsoft.net/framework/*/csc.exe This app (call it err.exe) when run, hangs for me when Cygwin is running in anything other than a Windows console.

Re: stderr output from .NET apps causes shell hangs when cygwin is not running in Windows console

2012-06-07 Thread Barry Kelly
Further to my previous email: I should add that redirected output works fine. $ ./err.exe 2/dev/null $ ./err.exe 2out.txt Either works fine, and the contents of out.txt are as expected. Barry Kelly wrote: This C# app: class err { static void Main() {

Re: stderr output from .NET apps causes shell hangs when cygwin is not running in Windows console

2012-06-07 Thread Barry Kelly
And only now I've found the messages talking about similar issues after fruitless Google searches. Same thing happens to me after I buy hardware. The problem appears fixed in the latest snapshot of cygwin1.dll. Sigh. Barry Kelly wrote: Further to my previous email: I should add that