Cygwin and Windows Vista Beta 2

2006-06-06 Thread Chuck McDevitt
Just an FYI: Cygwin's fork() implementation has an intermittent bug when running on Windows Vista Beta 2 (Beta 2 will be released to the general public soon). Here's an example error (from running bash -l ): 6 [main] ? (3572) c:\cygwin\bin\bash.exe: *** fatal error - couldn't alloc ate h

Re: Filename limits

2004-10-28 Thread Chuck McDevitt
Shankar Unni wrote: > > The Unicode versions of several functions permit a maximum path length > of 32,767 characters, composed of components up to 255 characters in > length. To specify such a path, use the "\\?\" prefix. For example, > "\\?\D:\". To specify such a UNC path, use the "\\?\UNC\"

Re: HyperThreading

2004-10-27 Thread Chuck McDevitt
The test case I originally sent in to demonstrate the problem was using pdksh, not bash, so the problem isn't isolated to bash P.s. Sorry about the top post -- Lotus notes seems to force it to be that way. Brian Ford <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 10/27/2004 05:11 PM Pleas

RE: cygwin 1.5.11: execv doesn't set argv[0] on Windows programs

2004-09-10 Thread Chuck McDevitt
argv and argc are concepts from the C runtime, not the Windows OS. The actual entry point to your program is to a routine that calls the initialization routines of the C library, then calls winMain. Those initialization routines get the command line via Win32 call, allocates memory for argv, an

Re: Recovering deleted files

2004-09-08 Thread Chuck McDevitt
I recommend File Rescue Plus:http://www.filerescueplus.com "David J. Stelte" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 09/08/2004 03:17 PM To [EMAIL PROTECTED] cc Subject Recovering deleted files Well, it happened to me. I did a rm *, not realizing I was in a different dire

Re: Lack of development feature ....

2004-08-27 Thread Chuck McDevitt
First, you have the name wrong. Second, if it's not there, Define it yourself: #define LOAD_IGNORE_CODE_AUTHZ_LEVEL 0x0010 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/doc

Re: Using "su" on cygwin

2004-08-16 Thread Chuck McDevitt
Why not use the Microsoft "runas" command to start your program/shell? RUNAS [ [/noprofile | /profile] [/env] [/netonly] ] /user: program MaurĂ­cio <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 08/16/2004 03:26 PM To [EMAIL PROTECTED] cc Subject Re: Using "su" on cygwin >

Re: cygwin1.dll problem with Hyperthreaded machines (reprise)

2004-07-30 Thread Chuck McDevitt
On Fri, Jul 30, 2004 at 11:41:39AM -0400, Chuck McDevitt wrote: >I've also been trying to convince my company to donate a hyperthreaded >machine to someone on the cygwin project, but so far, management's >reaction is "How do we know anyone will work on the problem, even if

Re: Cygwin1.dll problem with Hyperthreaded machines (reprise)

2004-07-30 Thread Chuck McDevitt
"Volker Bandke" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 07/30/2004 09:30 AM To <[EMAIL PROTECTED]> cc Subject Cygwin1.dll problem with Hyperthreaded machines (reprise) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi everyone, This msg relates to an earlier one at http://sou

Re: How to delete rogue nul files

2004-07-21 Thread Chuck McDevitt
While it's not hard to delete the rouge "nul" files, it is a recent change to cygwin that allows them to be created at all. 1.5.9 seemed to treat "NUL" in the normal windows way (equivalent of /dev/null), so didn't create these files. 1.5.10 changed so Cygwin no longer recognizes windows specia

Re: Fw: cygwin1.dll problem with Hyperthreaded machines.

2004-04-18 Thread Chuck McDevitt
orward it to the list, complete with email addresses for spam harvesters. I've never understood why people like to advertise their failed attempts to send email in this way. cgf (for the archives) On Fri, Apr 16, 2004 at 07:10:35PM -0400, Chuck McDevitt wrote: >- Forwarded by Chuck M

Fw: Cygwin1.dll problem with Hyperthreaded machines.

2004-04-16 Thread Chuck McDevitt
- Forwarded by Chuck McDevitt/AbInitio on 04/16/2004 07:09 PM - Chuck McDevitt/AbInitio 04/16/2004 07:01 PM To: [EMAIL PROTECTED] cc: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject:Re: Cygwin1.dll problem with Hyperthreaded machines

Re: Cygwin1.dll problem with Hyperthreaded machines.

2004-04-16 Thread Chuck McDevitt
Has anyone had a chance to try reproducing my problem with Cygwin1.dll and Hyperthreaded machines? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: ht

Re: Cygwin1.dll problem with Hyperthreaded machines.

2004-04-07 Thread Chuck McDevitt
Corinna Vinschen <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 04/07/2004 04:07 AM Please respond to cygwin To: Cygwin List <[EMAIL PROTECTED]> cc: Subject:Re: Cygwin1.dll problem with Hyperthreaded machines. On Apr 6 18:29, Chuck McDevit

Re: Cygwin1.dll problem with Hyperthreaded machines.

2004-04-06 Thread Chuck McDevitt
D]> 04/06/2004 05:40 PM Please respond to Cygwin List To: Chuck McDevitt <[EMAIL PROTECTED]>, [EMAIL PROTECTED] cc: Subject:Re: Cygwin1.dll problem with Hyperthreaded machines. At 05:17 PM 4/6/2004, you wrote: >I've been running into a

Cygwin1.dll problem with Hyperthreaded machines.

2004-04-06 Thread Chuck McDevitt
I've been running into a lot of problems with Cygwin on hyperthreaded machines, when those machines are heavily loaded. For example, if I run this script: #! /bin/ksh mypath=$(pwd) while [[ ! -z $mypath ]] do mypath=$(pwd) if [[ -z $mypath ]] then echo "Test Failed..Path is empty" fi

Cygwin problems with Hyperthreaded machines?

2004-03-16 Thread Chuck McDevitt
I've been running into some severe problems with using Cygwin on Hyperthreaded machines. The problem mostly occurs when capturing the stdout from a program with the backquote operator, or using the shell command in makefiles. The captured values end up as blank sometimes. For example, in my