delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2022/01/13/18:52:53

X-Recipient: archive-cygwin AT delorie DOT com
X-Original-To: cygwin AT cygwin DOT com
Delivered-To: cygwin AT cygwin DOT com
DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3F27F385840D
Authentication-Results: sourceware.org;
dmarc=fail (p=none dis=none) header.from=nifty.ne.jp
Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=nifty.ne.jp
DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-02.nifty.com 20DNqKML009680
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.ne.jp;
s=dec2015msa; t=1642117940;
bh=kvolE6jh/z5inx37v/JOLn5PSW7P/bR3S08jZGnrq2A=;
h=Date:From:To:Subject:In-Reply-To:References:From;
b=Bo3U6oCl4XHwXOm3+KnNRmEiCbLro/ZN9ypQCcpuZzAXg2jcQSr8xWQFOAs5PUpUl
wgDFYI2ZLfDyTtke7Hgww05bCKBN7Wctd5TR005TPzPk1fVWnvQCGsnn2A0+AgHO3K
ToP6IDKwgwlkO3FPbBqE2OoK9/sNkU6eCOx+Ll3DvpQleYRZXMpr6GqQMvMLG8Qwmi
8B/RSFcpdUvb7w4MUUkAwBCJZ3AfE+k7EcSElFwCfopN3skC8pvJr92/ozcl6ZzyE9
bwvoY7K920guwac9yHzTGNUZR2gSEMk4Nh0PxuDPPqOAfEFU5/0Kj0SIO8Z+/fVVi2
2LWFN7EuR8V9A==
X-Nifty-SrcIP: [14.3.233.132]
Date: Fri, 14 Jan 2022 08:52:27 +0900
From: Takashi Yano <takashi DOT yano AT nifty DOT ne DOT jp>
To: cygwin AT cygwin DOT com
Subject: Re: proc_waiter: error on read of child wait pipe 0x0, Win32 error 6
Message-Id: <20220114085227.c044e8735fb5d92e341d0b84@nifty.ne.jp>
In-Reply-To: <9b20c19a-b075-1dd3-d9f3-8cf53c51b1e5@gmail.com>
References: <MWHPR1401MB1951673B53610E3D45F15235E6529 AT MWHPR1401MB1951 DOT namprd14 DOT prod DOT outlook DOT com>
<MWHPR1401MB1951AD1FD95142752195EF0DE6529 AT MWHPR1401MB1951 DOT namprd14 DOT prod DOT outlook DOT com>
<MWHPR1401MB195104100F4D135F78351B86E6529 AT MWHPR1401MB1951 DOT namprd14 DOT prod DOT outlook DOT com>
<9b20c19a-b075-1dd3-d9f3-8cf53c51b1e5 AT gmail DOT com>
X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.30; i686-pc-mingw32)
Mime-Version: 1.0
X-Spam-Status: No, score=-3.9 required=5.0 tests=BAYES_00, DKIM_SIGNED,
DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_NUMSUBJECT, NICE_REPLY_A,
RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS,
TXREP autolearn=no autolearn_force=no version=3.4.4
X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on
server2.sourceware.org
X-BeenThere: cygwin AT cygwin DOT com
X-Mailman-Version: 2.1.29
List-Id: General Cygwin discussions and problem reports <cygwin.cygwin.com>
List-Unsubscribe: <https://cygwin.com/mailman/options/cygwin>,
<mailto:cygwin-request AT cygwin DOT com?subject=unsubscribe>
List-Archive: <https://cygwin.com/pipermail/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-request AT cygwin DOT com?subject=help>
List-Subscribe: <https://cygwin.com/mailman/listinfo/cygwin>,
<mailto:cygwin-request AT cygwin DOT com?subject=subscribe>
Errors-To: cygwin-bounces+archive-cygwin=delorie DOT com AT cygwin DOT com
Sender: "Cygwin" <cygwin-bounces+archive-cygwin=delorie DOT com AT cygwin DOT com>

On Wed, 12 Jan 2022 07:41:41 +0100
Marco Atzeri wrote:
> On 12.01.2022 07:27, Jay K wrote:
> > Ok, here is a small demonstration of the problem.
> > 
> > #include <stdlib.h>
> > #include <stdio.h>
> > #include <windows.h>
> > 
> > unsigned __stdcall thread(void* p)
> > {
> >    unsigned i;
> >    for (i = 0; i < 100; ++i)
> >     system("./a.exe");
> >    return 0;
> > }
> > 
> > int main()
> > {
> > unsigned i;
> > HANDLE threads[100] = {0};
> > FILE* f = fopen("a.c", "w");
> > fprintf(f, "int main() { return 0; }\n");
> > fclose(f);
> 
> 
> so you are mixing Cygwin and Windows calls ?
> That is looking for trouble.
> 
> Or it is a tentative to produce a test case ?

I found that the same happens even with pthread rather than
win32 thread functions.

#include <stdlib.h>
#include <pthread.h>

void *thread(void *p)
{
	system("true");
	return NULL;
}

int main()
{
	int i;
	pthread_t threads[2];

	for (i = 0; i < 2; i++)
		pthread_create(&threads[i], NULL, thread, NULL);

	for (i = 0; i < 2; i++)
		pthread_join(threads[i], NULL);

	return 0;
}

Executing above code results in hang with message:
      0 [waitproc] a 786 proc_waiter: error on read of child wait pipe 0x0, Win32 error 6

-- 
Takashi Yano <takashi DOT yano AT nifty DOT ne DOT jp>

-- 
Problem reports:      https://cygwin.com/problems.html
FAQ:                  https://cygwin.com/faq/
Documentation:        https://cygwin.com/docs.html
Unsubscribe info:     https://cygwin.com/ml/#unsubscribe-simple

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019