This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 1.5.5-1 command substitution hangs (0% cpu) on XP


Hi Geoff, Guys,

I'm having a similar problem, on two different computers, one XP (Xeon with HT), one 2k (single processor).
I did a windows update last friday (nov 14th), about the time the problems appeared. I also updated cygwin to the latest release at the same time (unforunately...).
On the XP machine, I pulled the cvs version of cygwin, compiled it, installed it, and the problem persists. I tried the updated version of bash (<ftp://sourceware.org/pub/cygwin/tmp/bash.exe>), still the same.


The exact behaviour is the following :
- I wrote this simple script that stress-tests command substitution :
#!/bin/bash
i=0
while true
do
	A=$(basename /bin/sh)
	i=$(($i+1))
	echo $i;
done

- I run it, and after some iterations (I got 5 once, more than 500 another time) it hangs. Once it crashed (segv). When it hangs, there are two running bash processes (suposedly the one for the script and the one for running the command). I cannot kill the child process (ctrl-c has no effect, kill on the child does nothing), but I can kill the parent.

- I tried attaching gdb to either process, here are the stack(s) dumps:

Child process (bash):
(gdb) info threads
* 3 thread 2564.0x404 0x77f75a59 in ntdll!DbgUiConnectToDbg ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
2 thread 2564.0xac4 0x7ffe0304 in ?? ()
1 thread 2564.0x59c 0x7ffe0304 in ?? ()
(gdb) thread 1
[Switching to thread 1 (thread 2564.0x59c)]#0 0x7ffe0304 in ?? ()
(gdb) bt
#0 0x7ffe0304 in ?? ()
#1 0x77f5b5d4 in ntdll!ZwClose () from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x77e7a730 in KERNEL32!CloseHandle ()
from /cygdrive/c/WINDOWS/system32/KERNEL32.DLL
#3 0x00000680 in ?? ()
#4 0x6106bb0a in fhandler_pipe::close() (this=0x6167175c)
at /home/piman/cygwin/src/winsup/cygwin/pipe.cc:96
#5 0x6108f186 in close (fd=3)
at /home/piman/cygwin/src/winsup/cygwin/cygheap.h:289
#6 0x00425921 in command_substitute (string=0xa0452e0 "basename /bin/sh",
quoted=0) at /netrel/src/bash-2.05b-1/subst.c:3812
#7 0x0042815e in param_expand (string=0xa044c50 "$(basename /bin/sh)",
sindex=0x22fa64, quoted=0, expanded_something=0x0,
contains_dollar_at=0x22fa68, quoted_dollar_at_p=0x22fa6c,
had_quoted_null_p=0x22fa70, pflags=0)
at /netrel/src/bash-2.05b-1/subst.c:5361
#8 0x00428755 in expand_word_internal (word=0x22fad8, quoted=0, isexp=0,
contains_dollar_at=0x0, expanded_something=0x0)
at /netrel/src/bash-2.05b-1/subst.c:5626
#9 0x00423d70 in call_expand_word_internal (w=0x22fad8, q=0, i=0, c=0x0,
e=0x0) at /netrel/src/bash-2.05b-1/subst.c:2312
#10 0x00423e31 in expand_string_internal (
string=0xa044c38 "$(basename /bin/sh)", quoted=0)
at /netrel/src/bash-2.05b-1/subst.c:2345
#11 0x00423e89 in expand_string_unsplit (
string=0xa044c38 "$(basename /bin/sh)", quoted=0)
at /netrel/src/bash-2.05b-1/subst.c:2367
#12 0x00423ad0 in expand_string_if_necessary (
string=0xa044c38 "$(basename /bin/sh)", quoted=0,
func=0x423e50 <expand_string_unsplit>)
at /netrel/src/bash-2.05b-1/subst.c:2176
#13 0x0042367b in do_assignment_internal (
string=0xa044f28 "A=$(basename /bin/sh)", expand=1)
at /netrel/src/bash-2.05b-1/subst.c:1949
#14 0x00423719 in do_assignment (string=0xa044f28 "A=$(basename /bin/sh)")
at /netrel/src/bash-2.05b-1/subst.c:2007
#15 0x00429954 in expand_word_list_internal (list=0x22fba8, eflags=-1)
at /netrel/src/bash-2.05b-1/subst.c:6659
(gdb) thread 2
[Switching to thread 2 (thread 2564.0xac4)]#0 0x7ffe0304 in ?? ()
(gdb) bt
#0 0x7ffe0304 in ?? ()
#1 0x77f5bfb4 in ntdll!ZwReadFile ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x77e7abbd in ReadFile () from /cygdrive/c/WINDOWS/system32/KERNEL32.DLL
#3 0x00000740 in ?? ()
(gdb) thread 3
[Switching to thread 3 (thread 2564.0x404)]#0 0x77f75a59 in ntdll!DbgUiConnectToDbg () from /cygdrive/c/WINDOWS/System32/ntdll.dll
(gdb) bt
#0 0x77f75a59 in ntdll!DbgUiConnectToDbg ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#1 0x77f5f31f in ntdll!KiUserCallbackDispatcher ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x00000005 in ?? ()
#3 0x00000004 in ?? ()
#4 0x00000001 in ?? ()
#5 0x003fffd0 in ?? ()
#6 0x8528a020 in ?? ()
#7 0xffffffff in ?? ()
#8 0x77fa88f0 in wcstombs () from /cygdrive/c/WINDOWS/System32/ntdll.dll




Parent process (bash):
(gdb) info threads
* 5 thread 3196.0xbec 0x77f75a59 in ntdll!DbgUiConnectToDbg ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
4 thread 3196.0x814 0x7ffe0304 in ?? ()
3 thread 3196.0xf1c 0x7ffe0304 in ?? ()
2 thread 3196.0xad8 0x7ffe0304 in ?? ()
1 thread 3196.0x894 0x7ffe0304 in ?? ()
(gdb) thread 1
[Switching to thread 1 (thread 3196.0x894)]#0 0x7ffe0304 in ?? ()
(gdb) bt
#0 0x7ffe0304 in ?? ()
#1 0x77f5c524 in ntdll!ZwWaitForMultipleObjects ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x77e75ee0 in WaitForMultipleObjectsEx ()
from /cygdrive/c/WINDOWS/system32/KERNEL32.DLL
#3 0x00000002 in ?? ()
#4 0x0022f76c in ?? ()
#5 0x00000001 in ?? ()
(gdb) thread 2
[Switching to thread 2 (thread 3196.0xad8)]#0 0x7ffe0304 in ?? ()
(gdb) bt
#0 0x7ffe0304 in ?? ()
#1 0x77f5bfb4 in ntdll!ZwReadFile ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x77e7abbd in ReadFile () from /cygdrive/c/WINDOWS/system32/KERNEL32.DLL
#3 0x00000760 in ?? ()
(gdb) thread 3
[Switching to thread 3 (thread 3196.0xf1c)]#0 0x7ffe0304 in ?? ()
(gdb) bt
#0 0x7ffe0304 in ?? ()
#1 0x77f5c524 in ntdll!ZwWaitForMultipleObjects ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x77e75ee0 in WaitForMultipleObjectsEx ()
from /cygdrive/c/WINDOWS/system32/KERNEL32.DLL
#3 0x00000002 in ?? ()
#4 0x00fdfe88 in ?? ()
#5 0x00000001 in ?? ()
(gdb) thread 4
[Switching to thread 4 (thread 3196.0x814)]#0 0x7ffe0304 in ?? ()
(gdb) bt
#0 0x7ffe0304 in ?? ()
#1 0x77f5bfb4 in ntdll!ZwReadFile ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x77e7abbd in ReadFile () from /cygdrive/c/WINDOWS/system32/KERNEL32.DLL
#3 0x00000680 in ?? ()
(gdb) thread 5
[Switching to thread 5 (thread 3196.0xbec)]#0 0x77f75a59 in ntdll!DbgUiConnectToDbg () from /cygdrive/c/WINDOWS/System32/ntdll.dll
(gdb) bt
#0 0x77f75a59 in ntdll!DbgUiConnectToDbg ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#1 0x77f5f31f in ntdll!KiUserCallbackDispatcher ()
from /cygdrive/c/WINDOWS/System32/ntdll.dll
#2 0x00000005 in ?? ()
#3 0x00000004 in ?? ()
#4 0x00000001 in ?? ()
#5 0x011fffd0 in ?? ()
#6 0x852a5440 in ?? ()
#7 0xffffffff in ?? ()
#8 0x77fa88f0 in wcstombs () from /cygdrive/c/WINDOWS/System32/ntdll.dll





Please note that the process that has the "command_substitute" trace is indeed the child process (no mistake here), so that means the deadlock occurs before the actual exec. I'm totally new to the cygwin codebase, so I'm sorry I can't be any more helpful right now (although I'm willing to spend some time debugging it). Any insight would be appreciated.


I attached my 'cygcheck -srv' dump.

Thanks,
Antoine Labour

-----Original Message-----
From: Geoffrey Ruscoe [mailto:gruscoe@ARCcorp.com] Sent: Thursday, November 13, 2003 2:03 PM
To: 'cygwin@cygwin.com'
Subject: RE: 1.5.5-1 command substitution hangs (0% cpu) on XP



I'm sorry I posted this problem a second time (under this new name) ... I thought my first attempt was too shotty and was probably misnamed. I was trying to continue the discussion that I had found that most closely matched (blah, blah).


I don't think I've been forgiven yet ;)


So I thought about trying an older version of cygwin to see if that would cure what ails (should be ale's as in free beer in my case) me, but I couldn't find snap shots of an older release (maybe 1.3.22-1). Is there a way to get this or would this not be helpful.


I guess this is not a good idea


Really, if anybody has any hints or things for me to try it would be very greatly appreciated. It seems so strange that I would be the only one having this problem even after the new version of bash.


Either this is a real stumper, or is so simple that ~anyone~ [read: I]
should have already figured it out, or ... What I would guess is that even
though I searched and searched, read the faq, read the user guide, and read
the posting guidelines I have offended all you hard working people -- and
thus haven't deserved response.  I'm sure I deserve such retribution, I'm
just not sure why ;).  To quote a famous bear: Oh bother.

Either way, keep up the good work, I have enjoyed using cygwin on many other
occasions (when I have been forced to use m$ winbloz).


Cheers



Thanks again,
Geoff

> -----Original Message-----
> From: Geoffrey Ruscoe [mailto:gruscoe@ARCcorp.com]
> Sent: Wednesday, November 12, 2003 11:12 AM
> To: 'cygwin@cygwin.com'
> Subject: 1.5.5-1 command substitution hangs (0% cpu) on XP
> > > I have seen a number of references to this problem, but none
> of the fixes seems to work. I have used cygwin on many > systems and not had this problem.
> > Basically any form of command substitution hangs with 0% cpu
> usage. Usually after a fresh reboot, the problem will not > occur for the first couple times I do it and then once the > first command substitution hangs, none of them work again > until a reboot.
> > Simple commands such as
> Echo `echo hi`
> Or
> echo `date`
> Or > The same using $(date), etc.
> > Have the same results as the post install scripts.
> > On this computer the setup has never completely worked always
> stopping on the post install scripts.
> > I can see the sh.exe processes in the task manager and have
> to kill them off. As I do this the progress meter of setup > will continue until I have killed all of the locked sh > processes and the setup finally finishes.
> > I have tried
> * the recent version of bash that was offered here
> * giving everyone full rights to cygwin and the entire c drive.
> * setting USER and HOME
> * making sure there are no spaces in either
> * various settings for CYGWIN (thought I had it there after a > reboot). Now my CYGWIN is just: ntsec
> > here is my
> bash-2.05b$ uname -a
> CYGWIN_NT-5.1 Consultant01 1.5.5(0.94/3/2) 2003-09-20 16:31 > i686 unknown unknown Cygwin
> > And my cygcheck -svr is attached.
> > The hang script hangs with both versions of bash (although
> not the first time or two after the fresh reboot).
> > I'm not sure what to try next. If anyone can point me to a
> document that might help, or if you have any suggestions to > try or some more information I can provide, it would be > greatly appreciated. And I apologize for having to ask for > help on what I am sure is a EBCAC. I have never had this > problem before. > > Also important to note: I think everything was working fine
> until the XP downloaded and installed some update it > "needed." But it is too late to verify that. I have deleted > cygwin and reinstalled it several times (including removing > the regedit entries.
> > Thanks again for anybody's help,
> > Geoff
> >
Cygwin Win95/NT Configuration Diagnostics
Current System Time: Wed Nov 19 18:40:26 2003

Windows XP Professional Ver 5.1 Build 2600 Service Pack 1

Path:	C:\cygwin\usr\local\bin
	C:\cygwin\bin
	C:\cygwin\bin
	C:\cygwin\usr\sbin
	C:\cygwin\sbin
	c:\WINDOWS\system32
	c:\WINDOWS
	c:\WINDOWS\System32\Wbem
	c:\Program Files\Common Files\Adaptec Shared\System
	c:\Program Files\ATI Technologies\ATI Control Panel
	C:\cygwin\home\piman\bin
	C:\cygwin\usr\local\equinox\bin
	s:\graphics\toolchain\bin

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 22596(ALabour) GID: 10513(mkgroup_l_d)
10513(mkgroup_l_d)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 22596(ALabour) GID: 10513(mkgroup_l_d)
544(Administrators)  545(Users)           
10513(mkgroup_l_d)

SysDir: C:\WINDOWS\System32
WinDir: C:\WINDOWS

HOME = `C:\cygwin\home\piman'
MAKE_MODE = `unix'
PWD = `/home/piman/test'
USER = `ALabour'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\ALabour\Application Data'
BUILDDIR = `/tmp/ram'
CC = `gcc'
COLORFGBG = `15;default;0'
COLORTERM = `rxvt-xpm'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMPUTERNAME = `ALABOUR-GX270'
COMSPEC = `C:\WINDOWS\system32\cmd.exe'
DISPLAY = `:0'
HOMEDRIVE = `H:'
HOMEPATH = `\'
JS_DEBUG = `1'
JS_PLATFORM = `win32'
JS_QUIET = `C'
LANG = `fr_FR'
LC_ALL = `français'
LS_COLORS = `no=00:fi=00:di=01;33:ln=01;36:pi=40;34:so=01;34:bd=40;34;01:cd=40;34;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;31:*.exe=01;31:*.com=01;31:*.btm=01;31:*.bat=01;31:*.sh=01;31:*.csh=01;31:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:'
MANPATH = `:/usr/ssl/man'
NUMBER_OF_PROCESSORS = `2'
OLDPWD = `/home/piman'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PATH_ORIG = `/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/Program Files/Common Files/Adaptec Shared/System:/cygdrive/c/Program Files/ATI Technologies/ATI Control Panel'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 15 Model 2 Stepping 9, GenuineIntel'
PROCESSOR_LEVEL = `15'
PROCESSOR_REVISION = `0209'
PROGRAMFILES = `C:\Program Files'
PROMPT = `$P$G'
PS1 = `%B[%3~]%(!.#.$) %b'
SESSIONNAME = `Console'
SHELL = `/bin/zsh'
SHLVL = `1'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINDOWS'
TEMP = `c:\DOCUME~1\ALabour\LOCALS~1\Temp'
TERM = `xterm'
TMP = `c:\DOCUME~1\ALabour\LOCALS~1\Temp'
TZ = `PST8PDT7,M4.1.0/2,M10.5.0/2'
USERNAME = `ALabour'
USERPROFILE = `C:\Documents and Settings\ALabour'
WINDIR = `C:\WINDOWS'
WINDOWID = `168035120'
_ = `/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x00000022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `C:\cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/cygdrive/s
  (default) = `s:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `C:\cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `C:\cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

a:  fd           N/A    N/A                    
c:  hd  NTFS   76253Mb  13% CP CS UN PA FC     
d:  cd           N/A    N/A                    
e:  cd           N/A    N/A                    
f:  net NTFS   55063Mb  17% CP CS UN PA        apps
g:  net NTFS   1651918Mb  89% CP CS UN PA        Group Share1
h:  net NTFS   1211577Mb  89% CP CS UN PA        home
k:  net NTFS   1211577Mb  89% CP CS UN PA        common
s:  net NTFS    1011Mb  41% CP CS    PA        sfs

C:\cygwin      /            system  binmode
s:             /cygdrive/s  system  binmode
C:\cygwin/bin  /usr/bin     system  binmode
C:\cygwin/lib  /usr/lib     system  binmode
.              /cygdrive    system  binmode,cygdrive

Found: C:\cygwin\bin\awk.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cpp.exe
Found: C:\cygwin\bin\find.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\cygwin\bin\gdb.exe
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\mv.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\tar.exe

   61k 2003/08/09 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2003/8/8 23:35
   14k 2003/08/10 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2003/8/10 13:57
    7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 0:57
  842k 2003/09/30 C:\cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.7.dll" v0.0 ts=2003/9/30 9:49
  645k 2003/04/11 C:\cygwin\bin\cygcrypto.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto.dll" v0.0 ts=2003/4/11 3:37
  598k 2003/11/03 C:\cygwin\bin\cygcurl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-2.dll" v0.0 ts=2003/11/3 8:22
   22k 2003/10/17 C:\cygwin\bin\cygcygipc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcygipc-2.dll" v0.0 ts=2003/10/16 22:24
  380k 2002/07/24 C:\cygwin\bin\cygdb-3.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-3.1.dll" v0.0 ts=2002/7/24 9:24
  831k 2003/09/20 C:\cygwin\bin\cygdb-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.1.dll" v0.0 ts=2003/9/20 14:51
  326k 2002/06/26 C:\cygwin\bin\cygdb2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb2.dll" v0.0 ts=2002/6/26 10:48
  487k 2002/07/24 C:\cygwin\bin\cygdb_cxx-3.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-3.1.dll" v0.0 ts=2002/7/24 9:25
 1080k 2003/09/20 C:\cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.1.dll" v0.0 ts=2003/9/20 14:53
  132k 2003/07/12 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2003/7/12 4:33
   64k 2003/09/23 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2003/9/23 12:13
   45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/24 22:28
   35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/8 22:03
   48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 2:25
   28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 0:58
   30k 2003/08/11 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/10 19:12
   19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 19:05
   15k 2003/07/20 C:\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 1:00
   15k 2003/08/11 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2003/8/10 19:13
   69k 2003/08/10 C:\cygwin\bin\cyggettextlib-0-12-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextlib-0-12-1.dll" v0.0 ts=2003/8/10 15:10
   12k 2003/08/10 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2003/8/10 15:11
  134k 2003/08/10 C:\cygwin\bin\cyggettextsrc-0-12-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextsrc-0-12-1.dll" v0.0 ts=2003/8/10 15:10
   17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/6 20:34
   29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/10 16:16
  958k 2003/08/10 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2003/8/10 13:57
   22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 1:28
   37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 14:50
   21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 10:09
  132k 2003/08/11 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2003/8/10 17:37
  119k 2002/02/09 C:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2002/2/8 21:19
   60k 2003/09/17 C:\cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3.dll" v0.0 ts=2003/9/17 9:37
   60k 2003/07/27 C:\cygwin\bin\cygkpathsea-3abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3abi13.dll" v0.0 ts=2003/7/27 13:23
   32k 2003/08/18 C:\cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2003/8/17 22:35
   26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/24 22:27
   20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/8 22:03
   29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 2:25
  156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/24 22:29
  175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/8 22:03
  226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/24 22:17
  202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/8 22:03
  224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 2:24
   15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/24 22:27
   12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/8 22:03
   19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 2:24
   67k 2003/09/10 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/9/10 7:25
   63k 2003/04/11 C:\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 1:31
   15k 2003/09/10 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/9/10 7:25
   61k 2003/04/11 C:\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 1:31
 1049k 2003/11/07 C:\cygwin\bin\cygperl5_8_2.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8_2.dll" v0.0 ts=2003/11/7 3:08
  173k 2003/08/10 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2003/8/10 15:35
   22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/8 22:45
  108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/6 20:34
  148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/10 16:16
   66k 2001/11/20 C:\cygwin\bin\cygregex.dll - os=4.0 img=1.0 sys=4.0
                  "cygregex.dll" v0.0 ts=2001/11/20 6:44
  682k 2003/10/11 C:\cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0
                  "cygruby18.dll" v0.0 ts=2003/10/11 4:41
  171k 2003/09/30 C:\cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.7.dll" v0.0 ts=2003/9/30 9:49
  165k 2003/04/11 C:\cygwin\bin\cygssl.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl.dll" v0.0 ts=2003/4/11 3:37
  254k 2003/09/18 C:\cygwin\bin\cygtidy-0-99-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygtidy-0-99-0.dll" v0.0 ts=2003/9/18 8:52
  281k 2003/02/24 C:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff3.dll" v0.0 ts=2003/2/23 20:58
  282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/10 19:32
   25k 2002/07/14 C:\cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygungif-4.dll" v0.0 ts=2002/7/14 7:58
 1074k 2003/09/23 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2003/9/23 10:52
   50k 2003/08/09 C:\cygwin\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX4.dll" v0.0 ts=2003/8/9 0:21
   54k 2003/08/09 C:\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-X4.dll" v0.0 ts=2003/8/9 0:22
  196k 2003/09/23 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2003/9/23 11:58
    7k 2003/09/23 C:\cygwin\bin\cygxsltbreakpoint-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxsltbreakpoint-1.dll" v0.0 ts=2003/9/23 12:06
   60k 2003/08/09 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2003/8/8 23:28
 6608k 2003/11/20 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2003/11/19 16:02
    Cygwin DLL version info:
        DLL version: 1.5.6
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 104
        Shared data: 3
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Wed Nov 19 16:02:27 PST 2003
        Shared id: cygwin1S3


Cygwin Package Information
Last downloaded files to: C:\Documents and Settings\ALabour\My Documents\download
Last downloaded files from: ftp://ftp.mirror.ac.uk/sites/sources.redhat.com/pub/cygwin

Package              Version            
_update-info-dir     00223-1            
a2ps                 4.13-1             
ash                  20031007-1         
astyle               1.15.3-3           
autoconf             2.57a-1            
autoconf-devel       2.57-2             
autoconf-stable      2.13-5             
automake             1.7.5a-1           
automake-devel       1.7.6-2            
automake-stable      1.4p6-1            
base-files           2.6-1              
base-passwd          1.1-1              
bash                 2.05b-16           
bc                   1.06-1             
binutils             20030901-1         
bison                20030307-1         
byacc                1.9-1              
bzip2                1.0.2-5            
ccache               2.2-1              
ccdoc                0.8.39-1           
clear                1.0-1              
compface             1.4-5              
crypt                1.1-1              
ctags                5.5-4              
curl                 7.10.8-1           
cvs                  1.11.6-3           
cygipc               2.02-1             
cygrunsrv            0.96-2             
cygutils             1.2.2-1            
cygwin               1.5.5-1            
cygwin-doc           1.3-6              
db2                  2.7.7-4            
db3.1                3.1.17-2           
diff                 1.0-1              
diffutils            2.8.4-1            
docbook-xml42        4.2-2              
docbook-xsl          1.62.4-1           
doxygen              1.2.18-1           
dpkg                 1.10.4-2           
ed                   0.2-1              
editrights           1.01-1             
ELFIO                1.0.0-1            
expat                1.95.6-2           
expect               20030128-1         
file                 4.03-2             
fileutils            4.1-2              
findutils            4.1.7-4            
flex                 2.5.4a-3           
fortune              1.8-2              
gawk                 3.1.3-4            
gcc                  3.3.1-3            
gcc-g++              3.3.1-3            
gcc-mingw            20030911-4         
gcc-mingw-core       20031020-1         
gcc-mingw-g++        20031020-1         
gcc2                 2.95.3-10          
gdb                  20030919-1         
gdbm                 1.8.3-7            
gettext              0.12.1-3           
gettext-devel        0.12.1-3           
ghostscript          7.05-2             
ghostscript-base     7.05-2             
gnupg                1.2.2-3            
gperf                2.7.2-1            
grep                 2.5-1              
groff                1.18.1-2           
gzip                 1.3.5-1            
indent               2.2.8-1            
jpeg                 6b-11              
keychain             1.9-1              
less                 381-1              
libbz2_1             1.0.2-5            
libcharset1          1.9.1-3            
libdb2               2.7.7-4            
libdb3.1             3.1.17-2           
libdb4.1             4.1.25-1           
libgdbm              1.8.0-5            
libgdbm-devel        1.8.3-7            
libgdbm3             1.8.3-3            
libgdbm4             1.8.3-7            
libgettextpo0        0.12.1-3           
libiconv             1.9.1-3            
libiconv2            1.9.1-3            
libintl              0.10.38-3          
libintl1             0.10.40-1          
libintl2             0.12.1-3           
libjpeg62            6b-11              
libjpeg6b            6b-8               
libkpathsea3         2.0.2-13           
libkpathsea3abi13    2.0.2-2            
libltdl3             1.5-3              
libncurses5          5.2-1              
libncurses6          5.2-8              
libncurses7          5.3-4              
libpcre              4.1-1              
libpcre0             4.4-2              
libpng               1.2.5-4            
libpng12             1.2.5-4            
libpng12-devel       1.2.5-4            
libpopt0             1.6.4-4            
libreadline4         4.1-2              
libreadline5         4.3-5              
libtiff-devel        3.6.0-5            
libtiff3             3.6.0-2            
libtiff4             3.6.0-5            
libtool              1.5a-1             
libtool-devel        1.5-3              
libtool-stable       1.4.3-2            
libungif             4.1.0-2            
libxml2              2.5.11-1           
libxslt              1.0.33-1           
login                1.9-7              
lynx                 2.8.4-7            
m4                   1.4-1              
make                 3.80-1             
man                  1.5j-2             
mingw-runtime        3.2-1              
mktemp               1.5-3              
more                 2.11o-1            
mutt                 1.4.1-1            
nasm                 0.98.38-1          
ncurses              5.3-4              
netcat               1.10-2             
newlib-man           20020801           
opengl               1.1.0-7            
openssh              3.7.1p2-2          
openssl              0.9.7c-1           
openssl-devel        0.9.7c-1           
openssl096           0.9.6j-1           
par                  1.52-1             
patch                2.5.8-8            
patchutils           0.2.22-2           
pcre                 4.4-2              
pcre-devel           4.4-2              
pcre-doc             4.4-2              
perl                 5.8.2-1            
perl_manpages        5.8.2-1            
pkgconfig            0.15.0-4           
postgresql           7.3.4-2            
procps               010801-2           
proftpd              1.2.9-1            
psutils              1.17-1             
python               2.3.2-1            
rcs                  5.7-3              
readline             4.3-5              
regex                4.4-2              
rsync                2.5.6-2            
ruby                 1.8.0-2            
rxvt                 2.7.10-3           
sed                  4.0.7-3            
sh-utils             2.0.15-4           
sharutils            4.2.1-3            
shutdown             1.4-1              
ssmtp                2.38.7-4           
stunnel              4.04-3             
swig                 1.3.19-1           
tar                  1.13.25-5          
tcltk                20030901-1         
termcap              20021106-2         
terminfo             5.3_20030726-1     
tetex                2.0.2-13           
tetex-base           2.0.2-13           
tetex-bin            2.0.2-13           
tetex-doc            2.0.2-13           
tetex-extra          2.0.2-13           
tetex-tiny           2.0.2-13           
texinfo              4.2-4              
textutils            2.0.21-1           
tidy                 030901-1           
tiff                 3.6.0-5            
time                 1.7-1              
units                1.77-1             
unzip                5.50-5             
vim                  6.2.098-1          
w32api               2.4-1              
wget                 1.9-1              
which                1.5-2              
whois                4.6.7-1            
xpm-nox              4.2.0-4            
zip                  2.3-5              
zlib                 1.1.4-4            
zsh                  4.1.1-2            
Use -h to see help about each section

--
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/

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]