X-Spam-Check-By: sourceware.org From: "William Sheehan" To: Subject: 1.5.20-1 perl 2328 sig_send: wait for sig_complete event failed Date: Thu, 13 Jul 2006 13:52:12 -0700 Message-ID: <001f01c6a6be$37648750$280aa8c0@oius.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0020_01C6A683.8B05AF50" X-Mailer: Microsoft Outlook, Build 10.0.6626 X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Note-from-DJ: This may be spam ------=_NextPart_000_0020_01C6A683.8B05AF50 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable We have a collection of perl scripts that run every night. Just recently we updated Cygwin to 1.5.20-1 using the latest setup.exe on the site, and updated all the other binaries as part of it. Unfortunately, I cannot remember what version we upgraded from; it was a long time ago, I'd guess about 5 months. However, as of the update, we are always seeing the following messages in one of the later scripts: 2 [unknown (0xD8)] perl 2328 sig_send: wait for sig_complete event failed, signal -41, rc 258, Win32 error 0 14776 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -41, rc 258, Win32 error 0 60040177 [unknown (0xD8)] perl 2328 sig_send: wait for sig_complete event failed, signal -34, rc 258, Win32 error 0 60040273 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -34, rc 258, Win32 error 0 120065422 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -34, rc 258, Win32 error 0 180075174 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -34, rc 258, Win32 error 0 240084816 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 305125262 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 370150140 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 435174910 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 500199735 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 565224563 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 630249383 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 695289861 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 760314652 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 825339473 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 890364299 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 955389118 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 1020429594 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 1085454400 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 1150479299 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 1215504053 [unknown (0x44C)] perl 2328 sig_send: wait for sig_complete event failed, signal -40, rc 258, Win32 error 0 ----------------------------------------------------------------- Observations ----------------------------------------------------------------- This always happens in the same script, though I have been unable to produce a simple testcase that exhibits this behavior. Unfortunately, I cannot do a simple attachment/paste of our scripts, since they contain a lot of private information. I am working on creating a public version that can be reviewed, but it is going to take a while. I will try to summarize as best I can in the meantime. Here are some important details about the environment and the errors: * The script uses Perl's ithreads (summary of what the script does is below) * The signal numbers that you see in the output are always the same; always 2x -41, 4x -34, 16x -40. After that last -40, I need to kill the sh.exe process to get a prompt back; Ctrl+C does nothing. Killing perl.exe does not work. After killing sh.exe, perl.exe is still running. If nothing is killed, the script will hang indefinitely (well, at least for 17 hours). * The numbers at the very beginning of the lines are different every time * The hex numbers by the 'unknown' word change with each run of the script, however in every instance they always follow the same pattern. HexA, HexB, HexA, 19x HexB * The problematic script is invoked from a parent script via system("perl problem_script.pl") * The errors always seem to occur about 20 minutes into the problem script. It isn't exact, but so far the times have been 21 minutes, 20, 22, 21, 23. This is roughly halfway through the 28 expect scripts that each thread executes (see below for details). * The scripts did not change during or since the Cygwin upgrade to 1.5.20-1. ----------------------------------------------------------------- How the script works ----------------------------------------------------------------- 1) We have a parent script that orchestrates all the child test scripts. It iterates through all possible tests, and if the test should run, it invokes the appropriate perl script via a system("perl script.pl"). There are about 6 possible test scripts; only the problematic one uses threads. 2) Now in the problematic script. We have two build machines; the current one, which is running Windows XP Pro SP2 with all updates, and a Linux machine running Mandrake 9.2 (if it ain't broke... :). The threads are used to have the machines work in parallel. The Windows tasks and the Linux tasks are each in their own subroutine. The code used to start these tasks looks like this: push @threadList, threads->create("LinuxWrapperFunc", "path_to_a_logfile"); push @threadList, threads->create("WindowsWrapperFunc", "path_to_a_logfile"); $_->join() foreach (@threadList); The wrapper functions open the passed logfile and do a select call on the handle to have all output go there. Once everything is done, a select STDOUT is performed. 3) The point of this test is to run about 28 expect scripts on each OS with various binaries. On both Windows and Linux, we create an appropriate shell script for each expect test and invoke them in serial. The main difference between the Windows and Linux functions (aside from shell syntax) is simply that we scp the shell script to the Linux machine, execute it via ssh, and then scp the results back to the Windows box for parsing. ----------------------------------------------------------------- Environment details ----------------------------------------------------------------- I have attached the cygcheck output per the problem reporting guidelines. I don't think the Linux machine details are relevant to this problem, but nonetheless: Linux machine uname -a : Linux sisyphus 2.4.22-10mdk #1 Thu Sep 18 12:30:58 CEST 2003 i686 unknown unknown GNU/Linux Linux machine /etc/mandrake-release : Mandrake Linux release 9.2 (FiveStar) for i586 ----------------------------------------------------------------- Possible solution paths? ----------------------------------------------------------------- * I read in the guidelines that it is generally not advisable to mention that these scripts worked with the previous versions of Cygwin. One idea I had was to try some older versions of Perl from the Cygwin setup and see if the problem still occurs. Should I go through with that idea? * Thank you for reading all of this! I know this is long; this is the best I could do to be concise yet descriptive. William Sheehan Builds Engineer / Network Administrator Open Interface North America ------=_NextPart_000_0020_01C6A683.8B05AF50 Content-Type: application/octet-stream; name="cygcheck.out" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="cygcheck.out" =0A= Cygwin Configuration Diagnostics=0A= Current System Time: Thu Jul 13 13:34:17 2006=0A= =0A= Windows XP Professional Ver 5.1 Build 2600 Service Pack 2=0A= =0A= Path: C:\cygwin\bin=0A= C:\WINDOWS\system32=0A= C:\WINDOWS=0A= C:\WINDOWS\System32\Wbem=0A= C:\j2sdk1.4.2_04\bin=0A= C:\Program Files\ARM\ADSv1_2\bin=0A= C:\Program Files\AccuRev\bin=0A= C:\doxygen\bin=0A= C:\Program Files\Expect-5.21\bin=0A= \\linuxsrv1\bin\winbin=0A= C:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT=0A= C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin=0A= C:\Program Files\Microsoft Visual Studio\Common\Tools=0A= C:\Program Files\Microsoft Visual Studio\VC98\bin=0A= C:\Program Files\doxygen\bin=0A= C:\Program Files\Support Tools=0A= =0A= Output from C:\cygwin\bin\id.exe (nontsec)=0A= UID: 11220(builds) GID: 10545(mkgroup-l-d)=0A= 0(root) 544(Administrators) 545(Users)=0A= 10545(mkgroup-l-d)=0A= =0A= Output from C:\cygwin\bin\id.exe (ntsec)=0A= UID: 11220(builds) GID: 10545(mkgroup-l-d)=0A= 0(root) 544(Administrators) 545(Users)=0A= 10545(mkgroup-l-d)=0A= =0A= SysDir: C:\WINDOWS\system32=0A= WinDir: C:\WINDOWS=0A= =0A= Path =3D 'C:\cygwin\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\= Wbem;C:\j2sdk1.4.2_04\bin;C:\Program Files\ARM\ADSv1_2\bin;C:\Program Files= \AccuRev\bin;C:\doxygen\bin;C:\Program Files\Expect-5.21\bin;\\linuxsrv1\bi= n\winbin;C:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT;C:\Pro= gram Files\Microsoft Visual Studio\Common\MSDev98\Bin;C:\Program Files\Micr= osoft Visual Studio\Common\Tools;C:\Program Files\Microsoft Visual Studio\V= C98\bin;C:\Program Files\doxygen\bin;C:\Program Files\Support Tools'=0A= =0A= ALLUSERSPROFILE =3D 'C:\Documents and Settings\All Users'=0A= APPDATA =3D 'C:\Documents and Settings\builds\Application Data'=0A= ARMCONF =3D 'C:\Program Files\ARM\ADSv1_2\BIN'=0A= ARMDLL =3D 'C:\Program Files\ARM\ADSv1_2\BIN'=0A= ARMHOME =3D 'C:\Program Files\ARM\ADSv1_2'=0A= ARMINC =3D 'C:\Program Files\ARM\ADSv1_2\INCLUDE'=0A= ARMLIB =3D 'C:\Program Files\ARM\ADSv1_2\LIB'=0A= CLIENTNAME =3D 'Console'=0A= CommonProgramFiles =3D 'C:\Program Files\Common Files'=0A= COMPUTERNAME =3D 'DIONYSUS'=0A= ComSpec =3D 'C:\WINDOWS\system32\cmd.exe'=0A= FP_NO_HOST_CHECK =3D 'NO'=0A= HOMEDRIVE =3D 'C:'=0A= HOMEPATH =3D '\Documents and Settings\builds'=0A= JAVA_HOME =3D 'c:\j2sdk1.4.2_04'=0A= LOGONSERVER =3D '\\OINASRV2'=0A= NUMBER_OF_PROCESSORS =3D '1'=0A= OS =3D 'Windows_NT'=0A= PATHEXT =3D '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'=0A= PROCESSOR_ARCHITECTURE =3D 'x86'=0A= PROCESSOR_IDENTIFIER =3D 'x86 Family 15 Model 2 Stepping 9, GenuineIntel'= =0A= PROCESSOR_LEVEL =3D '15'=0A= PROCESSOR_REVISION =3D '0209'=0A= ProgramFiles =3D 'C:\Program Files'=0A= PROMPT =3D '$P$G'=0A= QNX_CONFIGURATION =3D 'C:\Program Files\QNX Software Systems'=0A= QNX_HOST =3D 'C:/QNX630/host/win32/x86'=0A= QNX_TARGET =3D 'C:/QNX630/target/qnx6'=0A= SESSIONNAME =3D 'Console'=0A= SystemDrive =3D 'C:'=0A= SystemRoot =3D 'C:\WINDOWS'=0A= TEMP =3D 'C:\DOCUME~1\builds\LOCALS~1\Temp'=0A= TMP =3D 'C:\DOCUME~1\builds\LOCALS~1\Temp'=0A= USERDNSDOMAIN =3D 'OI-US.COM'=0A= USERDOMAIN =3D 'OPENUS'=0A= USERNAME =3D 'builds'=0A= USERPROFILE =3D 'C:\Documents and Settings\builds'=0A= windir =3D 'C:\WINDOWS'=0A= POSIXLY_CORRECT =3D '1'=0A= =0A= HKEY_CURRENT_USER\Software\Cygnus Solutions=0A= HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin=0A= HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2=0A= HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin=0A= (default) =3D 0x00000200=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2=0A= (default) =3D '/'=0A= cygdrive flags =3D 0x00000022=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/=0A= (default) =3D 'C:\cygwin'=0A= flags =3D 0x0000000a=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/tmp=0A= (default) =3D 0x0000000a=0A= native =3D 'C:\tmp'=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin=0A= (default) =3D 'C:\cygwin/bin'=0A= flags =3D 0x0000000a=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib=0A= (default) =3D 'C:\cygwin/lib'=0A= flags =3D 0x0000000a=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/X11R6/li= b/X11/fonts=0A= (default) =3D 'C:\cygwin\usr\X11R6\lib\X11\fonts'=0A= flags =3D 0x0000000a=0A= HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options=0A= =0A= a: fd N/A N/A=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=0A= c: hd NTFS 140003Mb 41% CP CS UN PA FC=20=20=20=20=20=0A= d: cd N/A N/A=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=0A= e: cd N/A N/A=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=0A= f: hd NTFS 140003Mb 41% CP CS UN PA FC=20=20=20=20=20=0A= =0A= C:\cygwin / system binmode= =0A= C:\tmp /tmp system binmode= =0A= C:\cygwin/bin /usr/bin system binmode= =0A= C:\cygwin/lib /usr/lib system binmode= =0A= C:\cygwin\usr\X11R6\lib\X11\fonts /usr/X11R6/lib/X11/fonts system binmode= =0A= . / system binmod= e,cygdrive=0A= =0A= Found: C:\cygwin\bin\awk.exe=0A= Found: C:\cygwin\bin\bash.exe=0A= Found: C:\cygwin\bin\cat.exe=0A= Found: C:\cygwin\bin\cp.exe=0A= Found: C:\cygwin\bin\cpp.exe=0A= Not Found: crontab=0A= Found: C:\cygwin\bin\find.exe=0A= Found: C:\cygwin\bin\gcc.exe=0A= Not Found: gdb=0A= Found: C:\cygwin\bin\grep.exe=0A= Found: C:\cygwin\bin\kill.exe=0A= Found: C:\cygwin\bin\ld.exe=0A= Found: C:\cygwin\bin\ls.exe=0A= Found: C:\cygwin\bin\make.exe=0A= Found: C:\cygwin\bin\mv.exe=0A= Not Found: patch=0A= Found: C:\cygwin\bin\perl.exe=0A= Found: C:\cygwin\bin\rm.exe=0A= Found: C:\cygwin\bin\sed.exe=0A= Found: C:\cygwin\bin\ssh.exe=0A= Found: C:\cygwin\bin\sh.exe=0A= Found: C:\cygwin\bin\tar.exe=0A= Found: C:\cygwin\bin\test.exe=0A= Not Found: vi=0A= Not Found: vim=0A= =0A= 56k 2005/07/09 C:\cygwin\bin\cygbz2-1.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygbz2-1.dll" v0.0 ts=3D2005/7/8 22:09=0A= 7k 2005/11/20 C:\cygwin\bin\cygcharset-1.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygcharset-1.dll" v0.0 ts=3D2005/11/19 18:24=0A= 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=3D4.0 img=3D1.0 sys=3D4= .0=0A= "cygcrypt-0.dll" v0.0 ts=3D2003/10/19 0:57=0A= 1108k 2006/06/01 C:\cygwin\bin\cygcrypto-0.9.7.dll - os=3D4.0 img=3D1.0 sy= s=3D4.0=0A= "cygcrypto-0.9.7.dll" v0.0 ts=3D2006/6/1 8:50=0A= 1050k 2006/06/01 C:\cygwin\bin\cygcrypto-0.9.8.dll - os=3D4.0 img=3D1.0 sy= s=3D4.0=0A= "cygcrypto-0.9.8.dll" v0.0 ts=3D2006/6/1 9:08=0A= 895k 2004/04/28 C:\cygwin\bin\cygdb-4.2.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygdb-4.2.dll" v0.0 ts=3D2004/4/27 8:31=0A= 965k 2005/05/14 C:\cygwin\bin\cygdb-4.3.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygdb-4.3.dll" v0.0 ts=3D2005/5/14 5:37=0A= 1156k 2004/04/28 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygdb_cxx-4.2.dll" v0.0 ts=3D2004/4/27 8:35=0A= 1240k 2005/05/14 C:\cygwin\bin\cygdb_cxx-4.3.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygdb_cxx-4.3.dll" v0.0 ts=3D2005/5/14 5:41=0A= 174k 2004/10/14 C:\cygwin\bin\cygexpat-0.dll - os=3D4.0 img=3D1.0 sys=3D4= .0=0A= "cygexpat-0.dll" v0.0 ts=3D2004/10/14 1:34=0A= 40k 2006/03/24 C:\cygwin\bin\cygform-8.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygform-8.dll" v0.0 ts=3D2006/3/23 23:16=0A= 45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygform5.dll" v0.0 ts=3D2001/4/24 22:28=0A= 35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygform6.dll" v0.0 ts=3D2002/1/8 22:03=0A= 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygform7.dll" v0.0 ts=3D2003/8/9 2:25=0A= 28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cyggdbm-3.dll" v0.0 ts=3D2003/7/20 0:58=0A= 30k 2003/08/11 C:\cygwin\bin\cyggdbm-4.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cyggdbm-4.dll" v0.0 ts=3D2003/8/10 19:12=0A= 19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cyggdbm.dll" v0.0 ts=3D2002/2/19 19:05=0A= 15k 2003/07/20 C:\cygwin\bin\cyggdbm_compat-3.dll - os=3D4.0 img=3D1.0 s= ys=3D4.0=0A= "cyggdbm_compat-3.dll" v0.0 ts=3D2003/7/20 1:00=0A= 15k 2003/08/11 C:\cygwin\bin\cyggdbm_compat-4.dll - os=3D4.0 img=3D1.0 s= ys=3D4.0=0A= "cyggdbm_compat-4.dll" v0.0 ts=3D2003/8/10 19:13=0A= 17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=3D4.0 img=3D1.0 sys=3D= 4.0=0A= "cyghistory4.dll" v0.0 ts=3D2001/1/6 20:34=0A= 29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=3D4.0 img=3D1.0 sys=3D= 4.0=0A= "cyghistory5.dll" v0.0 ts=3D2003/8/10 16:16=0A= 24k 2006/03/25 C:\cygwin\bin\cyghistory6.dll - os=3D4.0 img=3D1.0 sys=3D= 4.0=0A= "cyghistory6.dll" v0.0 ts=3D2006/3/25 6:05=0A= 947k 2005/11/20 C:\cygwin\bin\cygiconv-2.dll - os=3D4.0 img=3D1.0 sys=3D4= .0=0A= "cygiconv-2.dll" v0.0 ts=3D2005/11/19 18:24=0A= 22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygintl-1.dll" v0.0 ts=3D2001/12/13 1:28=0A= 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygintl-2.dll" v0.0 ts=3D2003/8/10 14:50=0A= 31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygintl-3.dll" v0.0 ts=3D2005/11/19 18:04=0A= 21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygintl.dll" v0.0 ts=3D2001/6/20 10:09=0A= 21k 2006/03/24 C:\cygwin\bin\cygmenu-8.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygmenu-8.dll" v0.0 ts=3D2006/3/23 23:16=0A= 26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygmenu5.dll" v0.0 ts=3D2001/4/24 22:27=0A= 20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygmenu6.dll" v0.0 ts=3D2002/1/8 22:03=0A= 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygmenu7.dll" v0.0 ts=3D2003/8/9 2:25=0A= 21k 2004/10/22 C:\cygwin\bin\cygminires.dll - os=3D4.0 img=3D1.0 sys=3D4= .0=0A= "cygminires.dll" v0.0 ts=3D2004/10/22 13:28=0A= 67k 2006/03/24 C:\cygwin\bin\cygncurses++-8.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygncurses++-8.dll" v0.0 ts=3D2006/3/23 23:17=0A= 156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygncurses++5.dll" v0.0 ts=3D2001/4/24 22:29=0A= 175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygncurses++6.dll" v0.0 ts=3D2002/1/8 22:03=0A= 227k 2006/03/24 C:\cygwin\bin\cygncurses-8.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygncurses-8.dll" v0.0 ts=3D2006/3/23 20:51=0A= 226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=3D4.0 img=3D1.0 sys=3D= 4.0=0A= "cygncurses5.dll" v0.0 ts=3D2001/4/24 22:17=0A= 202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=3D4.0 img=3D1.0 sys=3D= 4.0=0A= "cygncurses6.dll" v0.0 ts=3D2002/1/8 22:03=0A= 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=3D4.0 img=3D1.0 sys=3D= 4.0=0A= "cygncurses7.dll" v0.0 ts=3D2003/8/9 2:24=0A= 12k 2006/03/24 C:\cygwin\bin\cygpanel-8.dll - os=3D4.0 img=3D1.0 sys=3D4= .0=0A= "cygpanel-8.dll" v0.0 ts=3D2006/3/23 23:16=0A= 15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygpanel5.dll" v0.0 ts=3D2001/4/24 22:27=0A= 12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygpanel6.dll" v0.0 ts=3D2002/1/8 22:03=0A= 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygpanel7.dll" v0.0 ts=3D2003/8/9 2:24=0A= 176k 2005/09/06 C:\cygwin\bin\cygpcre-0.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygpcre-0.dll" v0.0 ts=3D2005/9/6 13:49=0A= 299k 2005/09/06 C:\cygwin\bin\cygpcrecpp-0.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygpcrecpp-0.dll" v0.0 ts=3D2005/9/6 14:26=0A= 6k 2005/09/06 C:\cygwin\bin\cygpcreposix-0.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygpcreposix-0.dll" v0.0 ts=3D2005/9/6 14:26=0A= 1249k 2005/12/30 C:\cygwin\bin\cygperl5_8.dll - os=3D4.0 img=3D1.0 sys=3D4= .0=0A= "cygperl5_8.dll" v0.0 ts=3D2005/12/29 17:48=0A= 1061k 2004/08/19 C:\cygwin\bin\cygperl5_8_5.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygperl5_8_5.dll" v0.0 ts=3D2004/8/19 10:54=0A= 22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygpopt-0.dll" v0.0 ts=3D2002/6/8 22:45=0A= 108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygreadline4.dll" v0.0 ts=3D2001/1/6 20:34=0A= 148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygreadline5.dll" v0.0 ts=3D2003/8/10 16:16=0A= 152k 2006/03/25 C:\cygwin\bin\cygreadline6.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygreadline6.dll" v0.0 ts=3D2006/3/25 6:05=0A= 230k 2006/06/01 C:\cygwin\bin\cygssl-0.9.7.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygssl-0.9.7.dll" v0.0 ts=3D2006/6/1 8:50=0A= 214k 2006/06/01 C:\cygwin\bin\cygssl-0.9.8.dll - os=3D4.0 img=3D1.0 sys= =3D4.0=0A= "cygssl-0.9.8.dll" v0.0 ts=3D2006/6/1 9:08=0A= 65k 2005/08/23 C:\cygwin\bin\cygz.dll - os=3D4.0 img=3D1.0 sys=3D4.0=0A= "cygz.dll" v0.0 ts=3D2005/8/22 19:03=0A= 1831k 2006/07/01 C:\cygwin\bin\cygwin1.dll - os=3D4.0 img=3D1.0 sys=3D4.0= =0A= "cygwin1.dll" v0.0 ts=3D2006/6/30 23:22=0A= Cygwin DLL version info:=0A= DLL version: 1.5.20=0A= DLL epoch: 19=0A= DLL bad signal mask: 19005=0A= DLL old termios: 5=0A= DLL malloc env: 28=0A= API major: 0=0A= API minor: 156=0A= Shared data: 4=0A= DLL identifier: cygwin1=0A= Mount registry: 2=0A= Cygnus registry name: Cygnus Solutions=0A= Cygwin registry name: Cygwin=0A= Program options name: Program Options=0A= Cygwin mount registry name: mounts v2=0A= Cygdrive flags: cygdrive flags=0A= Cygdrive prefix: cygdrive prefix=0A= Cygdrive default prefix:=20=0A= Build date: Sat Jul 1 02:22:36 EDT 2006=0A= Shared id: cygwin1S4=0A= =0A= =0A= No Cygwin services found.=0A= =0A= =0A= Cygwin Package Information=0A= Last downloaded files to: C:\cygwin_packages=0A= Last downloaded files from: http://mirrors.kernel.org/sources.redhat.com/cy= gwin=0A= =0A= Package Version=0A= _update-info-dir 00408-1=0A= alternatives 1.3.20a-2=0A= ash 20040127-3=0A= base-files 3.7-1=0A= base-passwd 2.2-1=0A= bash 3.1-6=0A= binutils 20060709-1=0A= bzip2 1.0.3-1=0A= coreutils 5.97-1=0A= crypt 1.1-1=0A= cygrunsrv 1.17-1=0A= cygutils 1.3.0-1=0A= cygwin 1.5.20-1=0A= cygwin-doc 1.4-3=0A= diffutils 2.8.7-1=0A= editrights 1.01-1=0A= expat 1.95.8-1=0A= findutils 4.2.27-1=0A= gawk 3.1.5-4=0A= gcc 3.4.4-1=0A= gcc-core 3.4.4-1=0A= gcc-g++ 3.4.4-1=0A= gcc-mingw-core 20050522-1=0A= gcc-mingw-g++ 20050522-1=0A= gdbm 1.8.3-7=0A= grep 2.5.1a-2=0A= groff 1.18.1-2=0A= gzip 1.3.5-2=0A= less 381-1=0A= libbz2_1 1.0.3-1=0A= libcharset1 1.9.2-2=0A= libdb4.2 4.2.52-1=0A= libdb4.3 4.3.28-1=0A= libgdbm 1.8.0-5=0A= libgdbm-devel 1.8.3-7=0A= libgdbm3 1.8.3-3=0A= libgdbm4 1.8.3-7=0A= libiconv 1.9.2-2=0A= libiconv2 1.9.2-2=0A= libintl 0.10.38-3=0A= libintl1 0.10.40-1=0A= libintl2 0.12.1-3=0A= libintl3 0.14.5-1=0A= libncurses-devel 5.5-2=0A= libncurses5 5.2-1=0A= libncurses6 5.2-8=0A= libncurses7 5.3-4=0A= libncurses8 5.5-2=0A= libpcre 4.1-2=0A= libpcre0 6.3-1=0A= libpopt0 1.6.4-4=0A= libreadline4 4.1-2=0A= libreadline5 4.3-5=0A= libreadline6 5.1-5=0A= login 1.9-7=0A= lynx 2.8.5-4=0A= make 3.80-1=0A= man 1.5p-1=0A= mingw-runtime 3.10-1=0A= minires 1.00-1=0A= mktemp 1.5-3=0A= ncurses 5.5-2=0A= openssh 4.3p2-3=0A= openssl 0.9.8b-1=0A= openssl097 0.9.7j-1=0A= perl 5.8.7-5=0A= readline 5.1-5=0A= run 1.1.10-1=0A= sed 4.1.5-1=0A= tar 1.15.1-4=0A= termcap 20050421-1=0A= terminfo 5.5_20060323-1=0A= texinfo 4.8-3=0A= w32api 3.7-1=0A= which 1.7-1=0A= zlib 1.2.3-1=0A= Use -h to see help about each section=0A= ------=_NextPart_000_0020_01C6A683.8B05AF50 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ ------=_NextPart_000_0020_01C6A683.8B05AF50--