Mailing-List: contact cygwin-developers-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-developers-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin-developers AT sources DOT redhat DOT com content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Subject: RE: fork on win95 X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Date: Fri, 20 Jul 2001 09:40:01 +1000 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: fork on win95 Thread-Index: AcEQq9rBYa/XqPgqRDqXUO5yOCAcJwAAAvYQ From: "Robert Collins" To: "cygdev" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id TAA06604 > -----Original Message----- > From: Corinna Vinschen [mailto:vinschen AT redhat DOT com] > Sent: Friday, July 20, 2001 9:30 AM > To: cygwin-developers AT cygwin DOT com > Subject: Re: fork on win95 > > > On Thu, Jul 19, 2001 at 11:31:00AM -0400, Christopher Faylor wrote: > > On Thu, Jul 19, 2001 at 01:12:10PM +0200, Corinna Vinschen wrote: > > >values (stdin, stdout and stderr, probably). Then the > normal `ps' output > > >appears. Generally, the above ERROR_INVALID_HANDLE output appears, > > >then everything works fine. That's also valid for the > aforementioned > > >ssh session. As usual nothing happens when started under > strace control. > > > > And, as usual, this would call for some debugging with gdb. > > Hmmpf, just had a first try. I tried a `gdb -nw /bin/sh' and then > a `r -c ps'. It crashes reproducable in check_valid_pointer() called > from pthread_mutex_lock() stuff called from read_etc_passwd(). > Before reaching main(), of course. > > I need some sleep now, > Corinna > Sleep(); Right now thats done :]. The IsBad*Ptr functions, when a debugger is attached, generate a signal if the pointer is bad. And the pointer is bad for most pthread_*_create|init calls unless the memory region is initialised to '\0'. Just 'cont' from that first exception. Rob