This is the mail archive of the cygwin 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]

failure of unzip and recent cygwin1.dll


summary:

unzip has been abending when run with recent cygwin1.dll: a gdb trace
(showing overflow?) and configuration information is included. I would
appreciate assistance locating the failing code(s) and the
maintainer(s) to contact.

details:

I would appreciate any assistance anyone could provide in debugging
the abends I (and at least one other user) have experienced running
unzip in cygwin > 1.5.5-1, and more importantly getting them fixed.
Note that

* the zips involved are very large (~= 1.5GB, 100k files) and contain
  mostly binaries, with some text (e.g. XML) and other compressed
  files (zip's and jar's)

* the point of failure is always a SEGV like

>> >   inflating:
>> 
/d/eclipse/builds/20040121_1953-WB213-AD-V512D-00/eclipse/plugins/com.ibm.etools.j2ee.ui/build/pluginBuild/commonbld/com/ibm/etools/ejb/ui/presentation/EJBEditorOutlineContentProvider.class

>> >     735 [main] unzip 1820 cmalloc: cmalloc returned NULL
>> > error:  zipfile probably corrupt (segmentation violation)

  but can be obtained even from a file that unzip'ed successfully with
  1.5.5-1, and can be unzip'ed with other tools (e.g. PowerArchiver).

* the point of failure is not otherwise repeatable. Specifically,
  unzip'ing the same file with different versions of cygwin1.dll
  produces SEGV at different inflation outputs. The only constant is
  the message "cmalloc: cmalloc returned NULL" (Hmm ... possible other
  constant: IIRC failing inflation output has always been a binary.)

I got the source of the 20040214 snapshot (almost the latest: 20040215
came out since I started debugging) built and debugging:

> cd /usr/src/unzip-5.50/.inst && gdb --args ./usr/bin/unzip.exe 
/d/eclipse/zips/wsa-jdk-20040210_1925-WB213-AD-V512D-W5.zip

unzip got fairly far (estimate ~80%) through the zip before 

>   inflating: 
runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504.gif 
 
>     555 [main] unzip 2316 cmalloc: cmalloc returned NULL

> Program received signal SIGSEGV, Segmentation fault.
> memcpy () at ../../../../../../newlib/libc/machine/i386/memcpy.S:53
> 53      ../../../../../../newlib/libc/machine/i386/memcpy.S: No such 
file or directory.
>         in ../../../../../../newlib/libc/machine/i386/memcpy.S
> Current language:  auto; currently asm

Debugging trace follows (with some commentary), then `cygcheck -svr`
to end of post. If you have any advice concerning 

* the loci of failure

* additional investigation desired (apologies for lack of gdb chops)

* person(s) to contact pursuant to correcting the failure(s)

please let me know. Feel free to contact me directly (as well as the
lists), and to forward.

> (gdb) where

> #0  memcpy () at ../../../../../../newlib/libc/machine/i386/memcpy.S:53

> #1  0x61062a91 in path_conv::set_normalized_path(char const*) 
(this=0x616a2008, 
>     path_copy=0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif") 
at ../../../../winsup/cygwin/path.cc:425

> #2  0x61027e81 in fhandler_base::set_name(path_conv&) (this=0x616a1fcc, 
in_pc=@0x22ea80)
>     at ../../../../winsup/cygwin/fhandler.cc:151

> #3  0x6101dee7 in build_fh_pc(path_conv&) (pc=@0x22ea80) at 
../../../../winsup/cygwin/dtable.cc:468

> #4  0x6101dcf8 in build_fh_name(char const*, void*, unsigned, 
suffix_info*) (
>     name=0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
h=0x0, opt=18, si=0x6114b2e4) at ../../../../winsup/cygwin/dtable.cc:351

> #5  0x61095433 in stat_worker(char const*, __stat64*, int) (
>     name=0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
buf=0x0, nofollow=1) at ../../../../winsup/cygwin/syscalls.cc:1151

> #6  0x61086f19 in _sigfe () at ../../../../winsup/cygwin/cygserver.h:82

> #7  0x0042a93c in G ()

> #8  0x0042a93c in G ()

> (gdb) info frame
> Stack level 0, frame at 0x22e9f0:
>  eip = 0x610cb1e4 in memcpy 
(../../../../../../newlib/libc/machine/i386/memcpy.S:53); saved eip 
0x61062a91
>  called by frame at 0x22ea20
>  source language asm.
>  Arglist at 0x22e9e8, args: 
>  Locals at 0x22e9e8, Previous frame's sp is 0x22e9f0
>  Saved registers:
>   ebx at 0x22e9dc, ebp at 0x22e9e8, esi at 0x22e9e4, edi at 0x22e9e0, 
eip at 0x22e9ec

> (gdb) info args
> No symbol table info available.

> (gdb) info locals
> No locals.

> (gdb) info catch
> No run-time support for this

> (gdb) up
> #1  0x61062a91 in path_conv::set_normalized_path(char const*) 
(this=0x616a2008, 
>     path_copy=0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif") 
at ../../../../winsup/cygwin/path.cc:425
> 425       memcpy (normalized_path, path_copy, n);
> Current language:  auto; currently c++

> (gdb) info frame
> Stack level 1, frame at 0x22ea20:
>  eip = 0x61062a91 in path_conv::set_normalized_path(char const*) 
(../../../../winsup/cygwin/path.cc:425); 
>     saved eip 0x61027e81
>  called by frame at 0x22ea40, caller of frame at 0x22e9f0
>  source language c++.
>  Arglist at 0x22ea18, args: this=0x616a2008, 
>     path_copy=0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif"
>  Locals at 0x22ea18, Previous frame's sp is 0x22ea20
>  Saved registers:
>   ebx at 0x22e9dc, ebp at 0x22ea18, esi at 0x22e9e4, edi at 0x22e9e0, 
eip at 0x22ea1c

> (gdb) info args 
> this = (path_conv * const) 0x616a2008
> path_copy = 0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif"

> (gdb) info locals
> n = 150

length of the path, appears correct

> (gdb) up
> #2  0x61027e81 in fhandler_base::set_name(path_conv&) (this=0x616a1fcc, 
in_pc=@0x22ea80)
>     at ../../../../winsup/cygwin/fhandler.cc:151
> 151       pc.set_normalized_path (in_pc.normalized_path);

> (gdb) info frame
> Stack level 2, frame at 0x22ea40:
>  eip = 0x61027e81 in fhandler_base::set_name(path_conv&) 
(../../../../winsup/cygwin/fhandler.cc:151); 
>     saved eip 0x6101dee7
>  called by frame at 0x22ea70, caller of frame at 0x22ea20
>  source language c++.
>  Arglist at 0x22ea38, args: this=0x616a1fcc, in_pc=@0x22ea80
>  Locals at 0x22ea38, Previous frame's sp is 0x22ea40
>  Saved registers:
>   ebx at 0x22ea2c, ebp at 0x22ea38, esi at 0x22ea30, edi at 0x22ea34, 
eip at 0x22ea3c

> (gdb) info args
> this = (fhandler_base * const) 0x616a1fcc
> in_pc = (path_conv &) @0x616a22ff: {fileattr = 0, fs = {

Following looks like an overflow to me, esp given the "out of bounds"
messages (but I have not coded C<|++> for several years):

>     name_storage = '\0' <repeats 193 times>, 
"\b\000\000\000¼\037ja\001\000\000\000\000\000\000\000/usr/src/unzip-5.50/.inst/buildFeatures/input/featu", 

>     root_dir_storage = 
"res/com.ibm.etools.common.frameworks.feature/feature_pt_BR.properties", 
'\0' <repeats 128 times>, 
"\b\000\000\000Ä#ja\001\000\000\000\000\000\000\000/usr/src/unzip-5.50/.inst/buildFeatures/input/f", 
flags_storage = 1970561381, serial_storage = 796091762, sym_opt_storage = 
778923875, 
>     is_remote_drive_storage = 105, drive_type_storage = 1869575269}, 
path_flags = 1663988588, 
>   known_suffix = 0x6f6d6d6f <Address 0x6f6d6d6f out of bounds>, error = 
1919299182, dev = {
>     name = 0x77656d61 <Address 0x77656d61 out of bounds>, {devn = 
1936421487, {minor = 29295, 
>         major = 29547}}, 
>     native = 0x6165662e 
";__comp_ctor::(86,938):_ZN23tagMCI_VD_ESCAPE_PARMSAC1ERKS_;2A.;__base_ctor::(86,939)=#(86,932),(10,13),(86,935),(10,13);:_ZN23tagMCI_VD_ESCAPE_PARMSAC2Ev;2A.;__comp_ctor::(86,939):_ZN23tagMCI_VD_ESCAP"..., 
mode = 1701999988, dev_on_fs = 47}, case_clash = 116, 

more problems:

>   normalized_path = 0x5f74705f <Address 0x5f74705f out of bounds>, 
normalized_path_size = 1882083906, 
>   path = "roperties", '\0' <repeats 128 times>, 
"\b\000\000\000Ì$ja\001\000\000\000\000\000\000\000/usr/src/unzip-5.50/.inst/buildFeatures/input/features/com.ibm.etools.common.frameworks.feature/feature_pt_"}

Note that normalized_path appears to be correct in succeeding frames,
however, though its size continues to be wrong (presuming base-10).
Next block repeats (sorry--should one only do 'info locals' in the
bottom frame?)

> (gdb) info locals
> in_pc = (path_conv &) @0x616a22ff: {fileattr = 0, fs = {
>     name_storage = '\0' <repeats 193 times>, 
"\b\000\000\000¼\037ja\001\000\000\000\000\000\000\000/usr/src/unzip-5.50/.inst/buildFeatures/input/featu", 

>     root_dir_storage = 
"res/com.ibm.etools.common.frameworks.feature/feature_pt_BR.properties", 
'\0' <repeats 128 times>, 
"\b\000\000\000Ä#ja\001\000\000\000\000\000\000\000/usr/src/unzip-5.50/.inst/buildFeatures/input/f", 
flags_storage = 1970561381, serial_storage = 796091762, sym_opt_storage = 
778923875, 
>     is_remote_drive_storage = 105, drive_type_storage = 1869575269}, 
path_flags = 1663988588, 
>   known_suffix = 0x6f6d6d6f <Address 0x6f6d6d6f out of bounds>, error = 
1919299182, dev = {
>     name = 0x77656d61 <Address 0x77656d61 out of bounds>, {devn = 
1936421487, {minor = 29295, 
>         major = 29547}}, 
>     native = 0x6165662e 
";__comp_ctor::(86,938):_ZN23tagMCI_VD_ESCAPE_PARMSAC1ERKS_;2A.;__base_ctor::(86,939)=#(86,932),(10,13),(86,935),(10,13);:_ZN23tagMCI_VD_ESCAPE_PARMSAC2Ev;2A.;__comp_ctor::(86,939):_ZN23tagMCI_VD_ESCAP"..., 
mode = 1701999988, dev_on_fs = 47}, case_clash = 116, 
>   normalized_path = 0x5f74705f <Address 0x5f74705f out of bounds>, 
normalized_path_size = 1882083906, 
>   path = "roperties", '\0' <repeats 128 times>, 
"\b\000\000\000Ì$ja\001\000\000\000\000\000\000\000/usr/src/unzip-5.50/.inst/buildFeatures/input/features/com.ibm.etools.common.frameworks.feature/feature_pt_"}

> (gdb) up 
> #3  0x6101dee7 in build_fh_pc(path_conv&) (pc=@0x22ea80) at 
../../../../winsup/cygwin/dtable.cc:468
> 468       fh->set_name (pc);

> (gdb) info frame
> Stack level 3, frame at 0x22ea70:
>  eip = 0x6101dee7 in build_fh_pc(path_conv&) 
(../../../../winsup/cygwin/dtable.cc:468); saved eip 0x6101dcf8
>  called by frame at 0x22ede0, caller of frame at 0x22ea40
>  source language c++.
>  Arglist at 0x22ea68, args: pc=@0x22ea80
>  Locals at 0x22ea68, Previous frame's sp is 0x22ea70
>  Saved registers:
>   ebx at 0x22ea60, ebp at 0x22ea68, esi at 0x22ea64, edi at 0x22ea34, 
eip at 0x22ea6c

> (gdb) info args
> pc = (path_conv &) @0x22ea80: {fileattr = 4294967295, fs = {
>     name_storage = 
"NTFS\000\000#\000\000\000\000\000\004ë\"\000É\tûw\b\006#\000¡\tûw\000\000#\000Ê\225üw`\000\000@n\000c\000o\000n\000s\000o\000l\000e\000.\000w\000a\000r\000\\\000c\000o\000m\000.\000i\000b\000m\000\000\000#\000\001\000.\000\001\000o\000\030n#\000o\000l\0008\002\000\000 ê\"\000\001\001\001\001\224ë\"\000ôdûwð/øwÿÿÿÿ¤ë\"\000§Êùw\000\000#\000a\000\000P 
n#\000\000\000#\000Ê\225üw`\000\000@f", '\0' <repeats 77 times>, "#", '\0' 
<repeats 20 times>, root_dir_storage = "d:\\", '\0' <repeats 256 times>, 
flags_storage = 459007, 
>     serial_storage = 3431808182, sym_opt_storage = 64, 
is_remote_drive_storage = false, 
>     drive_type_storage = 3}, path_flags = 2214592778, known_suffix = 
0x0, error = 0, dev = {
>     name = 0x61006f30 "", {devn = 247, {minor = 247, major = 0}}, native 
= 0x61006f30 "", mode = 0, 
>     dev_on_fs = false}, case_clash = false, 

Unlike previous frame (down), normalized_path appears correct. Its
size is again incorrect, but in "the other direction" (much too small
instead of much too large):

>   normalized_path = 0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
normalized_path_size = 0, 

Note apparent garbage:

>   path = 
"d:\\ProgramFiles\\Cygwin\\usr\\src\\unzip-5.50\\.inst\\runtimes\\base_v5\\installedApps\\localhost\\adminconsole.ear\\adminconsole.war\\com.ibm.ws.console.webservices\\nl\\zh_TW\\504x.gif\000lnk\000lnk\000Ì\037ja\000\000\021\000\000\000\000\000\230¨B\000\001\000\000\000"...}

> (gdb) info locals
> pc = (path_conv &) @0x22ea80: {fileattr = 4294967295, fs = {
>     name_storage = 
"NTFS\000\000#\000\000\000\000\000\004ë\"\000É\tûw\b\006#\000¡\tûw\000\000#\000Ê\225üw`\000\000@n\000c\000o\000n\000s\000o\000l\000e\000.\000w\000a\000r\000\\\000c\000o\000m\000.\000i\000b\000m\000\000\000#\000\001\000.\000\001\000o\000\030n#\000o\000l\0008\002\000\000 ê\"\000\001\001\001\001\224ë\"\000ôdûwð/øwÿÿÿÿ¤ë\"\000§Êùw\000\000#\000a\000\000P 
n#\000\000\000#\000Ê\225üw`\000\000@f", '\0' <repeats 77 times>, "#", '\0' 
<repeats 20 times>, root_dir_storage = "d:\\", '\0' <repeats 256 times>, 
flags_storage = 459007, 
>     serial_storage = 3431808182, sym_opt_storage = 64, 
is_remote_drive_storage = false, 
>     drive_type_storage = 3}, path_flags = 2214592778, known_suffix = 
0x0, error = 0, dev = {
>     name = 0x61006f30 "", {devn = 247, {minor = 247, major = 0}}, native 
= 0x61006f30 "", mode = 0, 
>     dev_on_fs = false}, case_clash = false, 
>   normalized_path = 0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
normalized_path_size = 0, 
>   path = 
"d:\\ProgramFiles\\Cygwin\\usr\\src\\unzip-5.50\\.inst\\runtimes\\base_v5\\installedApps\\localhost\\adminconsole.ear\\adminconsole.war\\com.ibm.ws.console.webservices\\nl\\zh_TW\\504x.gif\000lnk\000lnk\000Ì\037ja\000\000\021\000\000\000\000\000\230¨B\000\001\000\000\000"...}
> fh = (class fhandler_base *) 0x616a1fcc

> (gdb) up
> #4  0x6101dcf8 in build_fh_name(char const*, void*, unsigned, 
suffix_info*) (
>     name=0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
h=0x0, opt=18, si=0x6114b2e4) at ../../../../winsup/cygwin/dtable.cc:351
> 351       return build_fh_pc (pc);

> (gdb) info frame
> Stack level 4, frame at 0x22ede0:
>  eip = 0x6101dcf8 in build_fh_name(char const*, void*, unsigned, 
suffix_info*)
>     (../../../../winsup/cygwin/dtable.cc:351); saved eip 0x61095433
>  called by frame at 0x22ee30, caller of frame at 0x22ea70
>  source language c++.
>  Arglist at 0x22edd8, args: 
>     name=0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
h=0x0, opt=18, si=0x6114b2e4
>  Locals at 0x22edd8, Previous frame's sp is 0x22ede0
>  Saved registers:
>   ebx at 0x22ea60, ebp at 0x22edd8, esi at 0x22ea64, edi at 0x22ea34, 
eip at 0x22eddc

> (gdb) info args
> name = 0x0
> h = 0x0
> opt = 18
> si = (suffix_info *) 0x0

> (gdb) info locals
> name = 0x0
> h = 0x0
> si = (suffix_info *) 0x0
> pc = {fileattr = 4294967295, fs = {
>     name_storage = 
"NTFS\000\000#\000\000\000\000\000\004ë\"\000É\tûw\b\006#\000¡\tûw\000\000#\000Ê\225üw`\000\000@n\000c\000o\000n\000s\000o\000l\000e\000.\000w\000a\000r\000\\\000c\000o\000m\000.\000i\000b\000m\000\000\000#\000\001\000.\000\001\000o\000\030n#\000o\000l\0008\002\000\000 ê\"\000\001\001\001\001\224ë\"\000ôdûwð/øwÿÿÿÿ¤ë\"\000§Êùw\000\000#\000a\000\000P 
n#\000\000\000#\000Ê\225üw`\000\000@f", '\0' <repeats 77 times>, "#", '\0' 
<repeats 20 times>, root_dir_storage = "d:\\", '\0' <repeats 256 times>, 
flags_storage = 459007, 
>     serial_storage = 3431808182, sym_opt_storage = 64, 
is_remote_drive_storage = false, 
>     drive_type_storage = 3}, path_flags = 2214592778, known_suffix = 
0x0, error = 0, dev = {
>     name = 0x61006f30 "", {devn = 247, {minor = 247, major = 0}}, native 
= 0x61006f30 "", mode = 0, 
>     dev_on_fs = false}, case_clash = false, 
>   normalized_path = 0x64964edc 
"/usr/src/unzip-5.50/.inst/runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
normalized_path_size = 0, 
>   path = 
"d:\\ProgramFiles\\Cygwin\\usr\\src\\unzip-5.50\\.inst\\runtimes\\base_v5\\installedApps\\localhost\\adminconsole.ear\\adminconsole.war\\com.ibm.ws.console.webservices\\nl\\zh_TW\\504x.gif\000lnk\000lnk\000Ì\037ja\000\000\021\000\000\000\000\000\230¨B\000\001\000\000\000"...}

> (gdb) up
> #5  0x61095433 in stat_worker(char const*, __stat64*, int) (
>     name=0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
buf=0x0, nofollow=1) at ../../../../winsup/cygwin/syscalls.cc:1151
> 1151      fh = build_fh_name (name, NULL, (nofollow ? PC_SYM_NOFOLLOW : 
PC_SYM_FOLLOW)

> (gdb) info frame
> Stack level 5, frame at 0x22ee30:
>  eip = 0x61095433 in stat_worker(char const*, __stat64*, int) 
(../../../../winsup/cygwin/syscalls.cc:1151); 
>     saved eip 0x61086f19
>  called by frame at 0x22ee3c, caller of frame at 0x22ede0
>  source language c++.
>  Arglist at 0x22ee28, args: 
>     name=0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif", 
buf=0x0, nofollow=1
>  Locals at 0x22ee28, Previous frame's sp is 0x22ee30
>  Saved registers:
>   ebx at 0x22ea60, ebp at 0x22ee28, esi at 0x22ee20, edi at 0x22ee24, 
eip at 0x22ee2c

> (gdb) info args
> name = 0x42a93c 
"runtimes/base_v5/installedApps/localhost/adminconsole.ear/adminconsole.war/com.ibm.ws.console.webservices/nl/zh_TW/504x.gif"
> buf = (__stat64 *) 0x0
> nofollow = 1

> (gdb) info locals
> res = -1
> fh = (class fhandler_base *) 0x22ea80
> res = -1

> (gdb) up
> #6  0x61086f19 in _sigfe () at ../../../../winsup/cygwin/cygserver.h:82
> 82        ssize_t error_code () const { return _header.error_code; };

> (gdb) info frame
> Stack level 6, frame at 0x22ee3c:
>  eip = 0x61086f19 in _sigbe (../../../../winsup/cygwin/cygserver.h:82); 
saved eip 0x42a93c
>  called by frame at 0x22ee40, caller of frame at 0x22ee30
>  source language c++.
>  Arglist at 0x22ee34, args: 
>  Locals at 0x22ee34, Previous frame's sp is 0x22ee3c
>  Saved registers:
>   edx at 0x22ee2c, ebx at 0x22ee30, ebp at 0x22ee28, esi at 0x22ee20, 
edi at 0x22ee24, eip at 0x22ee38

> (gdb) info args
> No symbol table info available.

> (gdb) info locals
> this = (pinfo * const) 0x0
> this = (pinfo * const) 0x0
> sph_entry = (shm_attached_list *) 0x22ea80
> ssh_entry = (shm_shmid_list *) 0x22ea80
> sph_list = {slh_first = 0x0}
> n = 0
> n = 0
> ssh_next_entry = (shm_shmid_list *) 0x0
> ssh_list = {slh_first = 0x0}
> curelm = (shm_shmid_list *) 0x0
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x22ea80: {cygpid = -1, winpid = 1397118030, uid = 
2293760, gid = 0, gidcnt = 2288388, 
>   gidlist = 0x77fb09c9, is_admin = 8, p_vmspace = 0x77fb09a1, 
signal_arrived = 0x230000}
> blk = (proc &) @0x0: Cannot access memory at address 0x0

> (gdb) up
> #7  0x0042a93c in G ()

> (gdb) info frame
> Stack level 7, frame at 0x22ee40:
>  eip = 0x42a93c in G; saved eip 0x42a93c
>  called by frame at 0x22ee44, caller of frame at 0x22ee3c
>  Arglist at 0x22ee38, args: 
>  Locals at 0x22ee38, Previous frame's sp is 0x22ee40
>  Saved registers:
>   edx at 0x22ee2c, ebx at 0x22ee30, ebp at 0x22ee28, esi at 0x22ee20, 
edi at 0x22ee24, eip at 0x22ee3c

> (gdb) info args
> No symbol table info available.

> (gdb) info locals
> No symbol table info available.

> (gdb) up
> #8  0x0042a93c in G ()

> (gdb) info frame
> Stack level 8, frame at 0x22ee44:
>  eip = 0x42a93c in G; saved eip 0x0
>  caller of frame at 0x22ee40
>  Arglist at 0x22ee3c, args: 
>  Locals at 0x22ee3c, Previous frame's sp is 0x22ee44
>  Saved registers:
>   edx at 0x22ee2c, ebx at 0x22ee30, ebp at 0x22ee28, esi at 0x22ee20, 
edi at 0x22ee24, eip at 0x22ee40

> (gdb) info args
> No symbol table info available.

> (gdb) info locals
> No symbol table info available.

> (gdb) up
> Initial frame selected; you cannot go up.

end gdb, cygcheck -svr (slightly edited) follows to end of post-------

Cygwin Win95/NT Configuration Diagnostics
Current System Time: Sun Feb 15 22:50:40 2004

Windows 2000 Professional Ver 5.0 Build 2195 Service Pack 3

Path:   d:\ProgramFiles\Cygwin\bin
        d:\ProgramFiles\Cygwin\usr\X11R6\bin
        c:\WINNT\system32
        c:\WINNT
        c:\WINNT\System32\Wbem
        c:\Program Files\IBM\Trace Facility
        c:\Personal Communications
        d:\ProgramFiles\DiskeeperLite\7.0.414\
        d:\ProgramFiles\Rational\ClearQuest\common
        c:\Program Files\IBM\Infoprint Select
        c:\Infoprint
        .

SysDir: C:\WINNT\System32
WinDir: C:\WINNT
PWD = `/d/tlroche/bin'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMSPEC = `C:\WINNT\system32\cmd.exe'
CYGWIN_ROOT = `\ProgramFiles\Cygwin'
DISKEEPERICON = `d:\ProgramFiles\DiskeeperLite\7.0.414\'
DISPLAY = `127.0.0.1:0.0'
ECLIPSE_DRIVE_LETTER = `d'
NUMBER_OF_PROCESSORS = `1'
OS2LIBPATH = `C:\WINNT\system32\os2\dll;'
OS = `Windows_NT'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PCOMM_ROOT = `C:\Personal Communications'
PDBASE = `C:\PROGRA~1\IBM\INFOPR~1'
PDHOST = ` '
PD_SOCKET = `6874'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 15 Model 2 Stepping 7, GenuineIntel'
PROCESSOR_LEVEL = `15'
PROCESSOR_REVISION = `0207'
PROGRAMFILES = `C:\Program Files'
PROMPT = `$P$G'
RATL_RTHOME = `D:\ProgramFiles\Rational\ClearQuest\Rational Test'
SHELLNOTFORCYGWINEMACS = `D:\ProgramFiles\Cygwin\bin\bash.exe'
SHLVL = `1'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINNT'
TEMP = `d:\temp'
TERM = `xterm'
TMP = `d:\temp'
WINDIR = `C:\WINNT'
WINDOWID = `2097166'
_ = `/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 flags = 0x0000002a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `d:\ProgramFiles\Cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/c
  (default) = `c:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/d
  (default) = `d:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/e
  (default) = `e:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/s
  (default) = `s:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/t
  (default) = `t:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `d:\ProgramFiles\Cygwin/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `d:\ProgramFiles\Cygwin/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts 
v2\/usr/X11R6/lib/X11/fonts
  (default) = `d:\ProgramFiles\Cygwin\usr\X11R6\lib\X11\fonts'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/v
  (default) = `v:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS   10498Mb  91% CP CS UN PA FC     C
d:  hd  NTFS   46733Mb  75% CP CS UN PA FC     D
e:  cd           N/A    N/A 
f:  net FAT     5041Mb  53% CP    UN           FDRIVE
g:  net FAT    23544Mb  96% CP    UN           GDRIVE
h:  net FAT     4994Mb  86% CP    UN           CDRIVE
i:  net FAT    14450Mb  53% CP    UN           DDRIVE
t:  net NTFS   2219008Mb  71% CP CS    PA        tlroche
v:  net NTFS    4133Mb  91% CP CS UN PA FC 

d:\ProgramFiles\Cygwin                          / system  binmode
c:                                              /c system  binmode
d:                                              /d system  binmode
e:                                              /e system  binmode
s:                                              /s system  binmode
t:                                              /t system  binmode
d:\ProgramFiles\Cygwin/bin                      /usr/bin system  binmode
d:\ProgramFiles\Cygwin/lib                      /usr/lib system  binmode
d:\ProgramFiles\Cygwin\usr\X11R6\lib\X11\fonts  /usr/X11R6/lib/X11/fonts 
system  binmode
v:                                              /v system  binmode
.                                               / system  binmode,cygdrive

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

  802k 2003/09/15 d:\ProgramFiles\Cygwin\bin\cygaspell-15.dll - os=4.0 
img=1.0 sys=4.0
                  "cygaspell-15.dll" v0.0 ts=2003/9/15 8:32
   61k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 
sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2003/8/9 2:35
   14k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygcharset-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2003/8/10 16:57
    7k 2003/10/19 d:\ProgramFiles\Cygwin\bin\cygcrypt-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57
  842k 2003/09/30 d:\ProgramFiles\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 12:49
  645k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygcrypto.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcrypto.dll" v0.0 ts=2003/4/11 6:37
   22k 2004/02/10 d:\ProgramFiles\Cygwin\bin\cygcygipc-2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygcygipc-2.dll" v0.0 ts=2004/2/9 21:48
  380k 2002/07/24 d:\ProgramFiles\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 12:24
  831k 2003/09/20 d:\ProgramFiles\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 17:51
  487k 2002/07/24 d:\ProgramFiles\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 12:25
 1080k 2003/09/20 d:\ProgramFiles\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 17:53
  155k 2004/01/07 d:\ProgramFiles\Cygwin\bin\cygexpat-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2004/1/7 11:14
  131k 2003/10/28 d:\ProgramFiles\Cygwin\bin\cygfontconfig-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2003/10/28 17:44
   45k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygform5.dll - os=4.0 img=1.0 
sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/25 1:28
   35k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygform6.dll - os=4.0 img=1.0 
sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/9 1:03
   48k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygform7.dll - os=4.0 img=1.0 
sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 5:25
  361k 2003/10/25 d:\ProgramFiles\Cygwin\bin\cygfreetype-6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2003/10/22 0:18
   28k 2003/07/20 d:\ProgramFiles\Cygwin\bin\cyggdbm-3.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 3:58
   30k 2003/08/11 d:\ProgramFiles\Cygwin\bin\cyggdbm-4.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/10 22:12
   19k 2003/03/22 d:\ProgramFiles\Cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 
sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 22:05
   15k 2003/07/20 d:\ProgramFiles\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 4:00
   15k 2003/08/11 d:\ProgramFiles\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 22:13
   69k 2003/08/10 d:\ProgramFiles\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 18:10
   12k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cyggettextpo-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2003/8/10 18:11
  134k 2003/08/10 d:\ProgramFiles\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 18:10
  489k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygguile-12.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-12.dll" v0.0 ts=2003/8/9 10:17
  489k 2003/07/28 d:\ProgramFiles\Cygwin\bin\cygguile-12abi13.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-12abi13.dll" v0.0 ts=2003/7/28 14:18
   24k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygguile-ltdl-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-ltdl-1.dll" v0.0 ts=2003/8/9 10:16
   24k 2003/07/28 d:\ProgramFiles\Cygwin\bin\cygguile-ltdl-1abi13.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygguile-ltdl-1abi13.dll" v0.0 ts=2003/7/28 13:48
   62k 2003/08/09 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2003/8/9 
10:17
   62k 2003/07/28 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1abi13.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1abi13.dll" v0.0 
ts=2003/7/28 14:18
   23k 2003/08/09 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 
sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2003/8/9 10:17
   23k 2003/07/28 
d:\ProgramFiles\Cygwin\bin\cygguile-srfi-srfi-4-v-1-1abi13.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1abi13.dll" v0.0 ts=2003/7/28 
14:18
   11k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygguilereadline-v-12-12.dll 
- os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-12-12.dll" v0.0 ts=2003/8/9 10:17
   11k 2003/07/28 
d:\ProgramFiles\Cygwin\bin\cygguilereadline-v-12-12abi13.dll - os=4.0 
img=1.0 sys=4.0
                  "cygguilereadline-v-12-12abi13.dll" v0.0 ts=2003/7/28 
14:18
   17k 2001/06/28 d:\ProgramFiles\Cygwin\bin\cyghistory4.dll - os=4.0 
img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/6 23:34
   29k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cyghistory5.dll - os=4.0 
img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/10 19:16
  958k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygiconv-2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2003/8/10 16:57
   22k 2001/12/13 d:\ProgramFiles\Cygwin\bin\cygintl-1.dll - os=4.0 
img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 4:28
   37k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygintl-2.dll - os=4.0 
img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 17:50
   21k 2001/06/20 d:\ProgramFiles\Cygwin\bin\cygintl.dll - os=4.0 img=1.0 
sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 13:09
  119k 2002/02/09 d:\ProgramFiles\Cygwin\bin\cygjpeg6b.dll - os=4.0 
img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2002/2/9 0:19
   32k 2003/08/18 d:\ProgramFiles\Cygwin\bin\cygltdl-3.dll - os=4.0 
img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2003/8/18 1:35
   26k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 
sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/25 1:27
   20k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 
sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/9 1:03
   29k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 
sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 5:25
  156k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygncurses++5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/25 1:29
  175k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygncurses++6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/9 1:03
  226k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygncurses5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/25 1:17
  202k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygncurses6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/9 1:03
  224k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygncurses7.dll - os=4.0 
img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 5:24
   15k 2001/04/25 d:\ProgramFiles\Cygwin\bin\cygpanel5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/25 1:27
   12k 2002/01/09 d:\ProgramFiles\Cygwin\bin\cygpanel6.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/9 1:03
   19k 2003/08/09 d:\ProgramFiles\Cygwin\bin\cygpanel7.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 5:24
   62k 2003/12/11 d:\ProgramFiles\Cygwin\bin\cygpcre-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/12/11 12:01
   63k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygpcre.dll - os=4.0 img=1.0 
sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 4:31
    9k 2003/12/11 d:\ProgramFiles\Cygwin\bin\cygpcreposix-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/12/11 12:01
   61k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygpcreposix.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 4:31
 1049k 2003/11/07 d:\ProgramFiles\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 6:08
  173k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygpng12.dll - os=4.0 img=1.0 
sys=4.0
                  "cygpng12.dll" v0.0 ts=2003/8/10 18:35
   22k 2002/06/09 d:\ProgramFiles\Cygwin\bin\cygpopt-0.dll - os=4.0 
img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45
  108k 2001/06/28 d:\ProgramFiles\Cygwin\bin\cygreadline4.dll - os=4.0 
img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/6 23:34
  148k 2003/08/10 d:\ProgramFiles\Cygwin\bin\cygreadline5.dll - os=4.0 
img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/10 19:16
  171k 2003/09/30 d:\ProgramFiles\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 12:49
  165k 2003/04/11 d:\ProgramFiles\Cygwin\bin\cygssl.dll - os=4.0 img=1.0 
sys=4.0
                  "cygssl.dll" v0.0 ts=2003/4/11 6:37
  254k 2003/09/18 d:\ProgramFiles\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 11:52
  281k 2003/02/24 d:\ProgramFiles\Cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 
sys=4.0
                  "cygtiff3.dll" v0.0 ts=2003/2/23 23:58
 3006k 2003/10/12 d:\ProgramFiles\Cygwin\bin\cygxerces-c23.dll - os=4.0 
img=1.0 sys=4.0
                  "cygxerces-c23.dll" v0.0 ts=2003/10/11 22:36
   61k 2003/12/04 d:\ProgramFiles\Cygwin\bin\cygz.dll - os=4.0 img=1.0 
sys=4.0
                  "cygz.dll" v0.0 ts=2003/12/3 22:03
 6803k 2004/02/16 d:\ProgramFiles\Cygwin\bin\cygwin1.dll - os=4.0 img=1.0 
sys=4.0
                  "cygwin1.dll" v0.0 ts=2004/2/15 20:06
    Cygwin DLL version info:
        DLL version: 1.5.8
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 110
        Shared data: 4
        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: Sun Feb 15 20:06:00 EST 2004
        Snapshot date: 20040214-21:45:11
        Shared id: cygwin1S4

  237k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygdps-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2003/11/17 20:41
  121k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygdpstk-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2003/11/17 20:41
   28k 2004/01/16 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygDtPrint-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygDtPrint-1.dll" v0.0 ts=2004/1/15 23:07
  282k 2003/10/28 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygfreetype-9.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygfreetype-9.dll" v0.0 ts=2003/10/18 2:44
  373k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygGL-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2003/11/17 20:39
  439k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygGLU-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2003/11/17 20:40
   74k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygICE-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2003/11/17 20:30
   76k 2004/01/16 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygMrm-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygMrm-2.dll" v0.0 ts=2004/1/15 23:07
    9k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygoldX-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2003/11/17 20:30
 1271k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygOSMesa-4.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2003/11/17 20:39
   20k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygpsres-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2003/11/17 20:42
   30k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygSM-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2003/11/17 20:30
   66k 2004/01/16 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygUil-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygUil-2.dll" v0.0 ts=2004/1/15 23:07
  864k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygX11-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2003/11/17 20:30
  253k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXaw-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2003/11/17 20:33
  355k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXaw-7.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2003/11/17 20:34
   36k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXcursor-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2003/11/17 20:43
   49k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXext-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2003/11/17 20:30
   56k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXft-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/17 20:42
   74k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXft-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2003/11/17 20:42
   27k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXi-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2003/11/17 20:34
 1293k 2004/01/16 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXm-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXm-2.dll" v0.0 ts=2004/1/15 23:03
   76k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXmu-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2003/11/17 20:32
   11k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXmuu-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2003/11/17 20:32
   26k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXp-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2003/11/17 20:35
   51k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXpm-4.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2003/11/17 20:32
   14k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXrandr-2.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2003/11/17 20:43
   26k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXrender-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2003/11/17 20:42
  282k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXt-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2003/11/17 20:31
   27k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXTrap-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2003/11/17 20:43
   17k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXtst-6.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2003/11/17 20:34
   15k 2003/11/18 d:\ProgramFiles\Cygwin\usr\X11R6\bin\cygXv-1.dll - 
os=4.0 img=1.0 sys=4.0
                  "cygXv-1.dll" v0.0 ts=2003/11/17 20:35

Cygwin Package Information
Last downloaded files to: D:\download\cygwin
Last downloaded files from: ftp://mirrors.rcn.net/pub/sourceware/cygwin

Package                 Version 
_update-info-dir        00226-1 
a2ps                    4.13-1 
ash                     20040127-1 
aspell                  0.50.3-1 
aspell-doc              0.50.3-1 
aspell-en               0.51.0-1 
autoconf                2.59-1 
autoconf-devel          2.59-1 
autoconf-stable         2.13-5 
automake                1.7.9-1 
automake-devel          1.7.9-1 
automake-stable         1.4p6-2 
base-files              2.6-1 
base-passwd             1.1-1 
bash                    2.05b-16 
bc                      1.06-1 
binutils                20030901-1 
bzip2                   1.0.2-5 
chkconfig               1.2.24h-1 
clear                   1.0-1 
cmake                   1.8.3-1 
crypt                   1.1-1 
ctags                   5.5-4 
cvs                     1.11.6-3 
cygipc                  2.03-2 
cygrunsrv               0.98-1 
cygutils                1.2.4-1 
cygwin                  1.5.7-1 
cygwin-doc              1.3-6 
ddd                     3.3.8-1 
diffutils               2.8.4-1 
editrights              1.01-1 
emacs                   21.2-12 
emacs-el                21.2-12 
emacs-X11               21.2-12 
enscript                1.6.3-3 
expat                   1.95.7-1 
expect                  20030128-1 
fileutils               4.1-2 
findutils               4.1.7-4 
fontconfig              2.2.0-1 
freetype2               2.1.5-1 
gawk                    3.1.3-4 
gcc                     3.3.1-3 
gcc-g++                 3.3.1-3 
gcc-mingw-core          20031020-1 
gcc-mingw-g++           20031020-1 
gdb                     20030919-1 
gdbm                    1.8.3-7 
gettext                 0.12.1-3 
ghostscript             7.05-2 
ghostscript-base        7.05-2 
ghostscript-x11         7.05-2 
gnugo                   3.4-1 
gnupg                   1.2.2-3 
grep                    2.5-1 
groff                   1.18.1-2 
guile                   1.6.4-12 
guile-devel             1.6.4-12 
guile-doc               1.6.4-12 
gzip                    1.3.5-1 
inetutils               1.3.2-25 
initscripts             0.9-1 
less                    381-1 
lesstif                 0.93.91-6 
lftp                    2.6.10-1 
libaspell15             0.50.3-1 
libbz2_1                1.0.2-5 
libcharset1             1.9.1-3 
libdb3.1                3.1.17-2 
libdb4.1                4.1.25-1 
libfontconfig1          2.2.0-1 
libfreetype26           2.1.5-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 
libguile12              1.6.4-12 
libguile12abi13         1.6.4-2 
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 
libjpeg6b               6b-8 
libltdl3                1.5-3 
libncurses5             5.2-1 
libncurses6             5.2-8 
libncurses7             5.3-4 
libpcre                 4.1-1 
libpcre0                4.5-1 
libpng12                1.2.5-4 
libpopt0                1.6.4-4 
libreadline4            4.1-2 
libreadline5            4.3-5 
libtiff3                3.6.0-2 
libxerces-c23           2.3.0-4 
login                   1.9-7 
m4                      1.4-1 
make                    3.80-1 
man                     1.5k-2 
mc                      4.6.0-4 
mingw-runtime           3.2-1 
mktemp                  1.5-3 
mutt                    1.4.1-2 
nasm                    0.98.38-1 
ncftp                   3.1.4-1 
ncurses                 5.3-4 
openssh                 3.7.1p2-2 
openssl                 0.9.7c-1 
openssl096              0.9.6j-1 
patch                   2.5.8-8 
patchutils              0.2.22-2 
pcre                    4.5-1 
pcre-doc                4.5-1 
perl                    5.8.2-1 
procmail                3.22-8 
psutils                 1.17-1 
python                  2.3.3-1 
readline                4.3-5 
rsync                   2.6.0-1 
rxvt                    2.7.10-3 
sed                     4.0.8-1 
sh-utils                2.0.15-4 
sharutils               4.2.1-3 
ssmtp                   2.60.4-2 
sysvinit                2.84-4 
tar                     1.13.25-5 
tcltk                   20030901-1 
termcap                 20021106-2 
terminfo                5.3_20030726-1 
texinfo                 4.2-4 
textutils               2.0.21-1 
tidy                    030901-1 
unzip                   5.50-5 
uw-imap                 2002e-3 
uw-imap-imapd           2002e-3 
uw-imap-util            2002e-3 
w32api                  2.5-1 
wget                    1.9.1-1 
which                   1.5-2 
xerces-c                2.4.0-4 
xerces-c-devel          2.4.0-4 
xerces-c-doc            2.4.0-4 
XFree86-base            4.3.0-1 
XFree86-bin             4.3.0-8 
XFree86-etc             4.3.0-6 
XFree86-fenc            4.2.0-3 
XFree86-fnts            4.2.0-3 
XFree86-lib             4.3.0-1 
XFree86-lib-compat      4.3.0-2 
XFree86-startup-scripts 4.2.0-5 
XFree86-xserv           4.3.0-44 
xinetd                  2.3.9-1 
zip                     2.3-5 
zlib                    1.2.1-1 
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]