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

Possible Bug in file length calculation in normalize_posix_path


Hello.

I'm running the latest Cygwin 1.1.6 on a Windows NT (and Win2K)
machine.  (cygcheck information is located at the end of this
mail).

I have a test program which looks like this:


     #include <stdlib.h>
     #include <unistd.h>
     #include <getopt.h>
     #include <sys/types.h>
     #include <sys/stat.h>
     #include <errno.h>

     int main ( int argc, char **argv ) {

         struct stat path_stats;
         int nRet = 0;

         printf ( "%s\n", argv[1] );
         nRet = lstat ( argv[1], &path_stats );
         if ( nRet == -1 ) {
             printf ( "Return: %d: %s\n",
                     errno, strerror ( errno ) );
         }

     }

Basically, it's just doing an "lstat" of a file, and printing out
any problemss that occur.

From a directory

    "e:/afsrc/tip12/funkware1/com/funkware/community/module/mpack/services/mpackgroup/uicomponents"

i am doing:
    "a.exe ../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class"

This file name is 157 characters long (much less than MAX_PATH
which is supposed to be 260).

The program fails with an ENAMETOOLONG error.

I've downloaded the latest snapshot: 20001213  (although I can't
seem to get it to build).  In looking through an strace output
(also included at the bottom of this file), I think that
"normalize_posix_path()" in winsup/cygwin/path.cc is verifying
the max path length improperly.  The offending code is at line
613 of path.cc (a clip is shown below).


    static int
    normalize_posix_path (const char *src, char *dst)
    {
      const char *src_start = src;
      char *dst_start = dst;

      syscall_printf ("src %s", src);
      if (isdrive (src) || strpbrk (src, "\\:"))
        {
          cygwin_conv_to_full_posix_path (src, dst);
          return 0;
        }
      if (!isslash (src[0]))
        {
          if (!cygcwd.get (dst))
            return get_errno ();

                /*
                 * This next line is the one in question...
                 */
          if (strlen (dst) + 1 + strlen (src) >= MAX_PATH)

            {
              debug_printf ("ENAMETOOLONG = normalize_posix_path (%s)", src);
              return ENAMETOOLONG;
            }

the function is taking the length of both the destination and
source strings and seeing if they are greater than MAX_PATH.  Is
this a bug?  Or am I missing something here.  I apologize for not
being more sure, however I haven't been able to build the
library, and I can't get the latest gdb to look step into the
lstat call to really verify what's going on.

Thanks very much.

...alex...

(strace and cygcheck info follow...)


#
# OUTPUT FROM strace
#

**********************************************
Program name: c:\bin\a.exe (1172)
App version:  1001.6, api: 0.30
DLL version:  1001.6, api: 0.30
DLL build:    2000-11-21 21:00
OS version:   Windows NT-5.0
Date/Time:    2000-12-15 13:44:01
**********************************************
  987    1810 [main] a 1172 environ_init: 0xA0101B0: !E:=e:\afsrc\tip12\funkware1\com\funkware\community\module\mpack\services\mpackgroup\uicomponents
  226    2036 [main] a 1172 environ_init: 0xA010218: ALLUSERSPROFILE=C:\Documents and Settings\All Users
  183    2219 [main] a 1172 environ_init: 0xA010250: APPDATA=C:\Documents and Settings\altitude\Application Data
  182    2401 [main] a 1172 environ_init: 0xA010290: CLASSPATH=e:\Program Files\WGP\bin\WMLScript.jar
 1655    4056 [main] a 1172 environ_init: 0xA0102C8: COMMONPROGRAMFILES=C:\Program Files\Common Files
  221    4277 [main] a 1172 environ_init: 0xA010300: COMPUTERNAME=FEATHERS
  164    4441 [main] a 1172 environ_init: 0xA010320: COMSPEC=C:\WINNT\system32\cmd.exe
  155    4596 [main] a 1172 environ_init: 0xA010348: CVSEDITOR=vim.exe
  153    4749 [main] a 1172 environ_init: 0xA010360: CVSROOT=:pserver:altitude@cvsserver:/home/cvs/master
  155    4904 [main] a 1172 environ_init: 0xA0103A0: DIR=c:/Users/altitude
  153    5057 [main] a 1172 environ_init: 0xA0103C0: EDITOR=vi
  154    5211 [main] a 1172 environ_init: 0xA0103D0: GROUP=unknown
  156    5367 [main] a 1172 getwinenv: can't set native for HOME= since no environ yet
  201    5568 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (c:\Users\altitude, no-keep-rel, no-add-slash)
  131    5699 [main] a 1172 normalize_win32_path: c:\Users\altitude = normalize_win32_path (c:\Users\altitude)
   92    5791 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/c/Users/altitude = conv_to_posix_path (c:\Users\altitude)
  258    6049 [main] a 1172 win_env::add_cache: posix /cygdrive/c/Users/altitude
   84    6133 [main] a 1172 win_env::add_cache: native HOME=c:\Users\altitude
   82    6215 [main] a 1172 posify: env var converted to HOME=/cygdrive/c/Users/altitude
  155    6370 [main] a 1172 environ_init: 0xA010408: HOME=/cygdrive/c/Users/altitude
  197    6567 [main] a 1172 environ_init: 0xA0103E8: HOMEDRIVE=C:
  156    6723 [main] a 1172 environ_init: 0xA010558: HOMEPATH=\
  157    6880 [main] a 1172 environ_init: 0xA010568: HOST=FEATHERS
  154    7034 [main] a 1172 environ_init: 0xA010580: HOSTNAME=FEATHERS
  183    7217 [main] a 1172 environ_init: 0xA010598: HOSTTYPE=i686
  156    7373 [main] a 1172 environ_init: 0xA0105B0: JAVA_HOME=d:\Java\JDK1.2.2
  155    7528 [main] a 1172 environ_init: 0xA0105D0: LESS=-emirCX
  154    7682 [main] a 1172 environ_init: 0xA0105E8: LOGNAME=altitude
  154    7836 [main] a 1172 environ_init: 0xA010600: LOGONSERVER=\\FEATHERS
  154    7990 [main] a 1172 environ_init: 0xA010620: MACHTYPE=i686-pc-cygwin
  156    8146 [main] a 1172 environ_init: 0xA010640: NUMBER_OF_PROCESSORS=1
  154    8300 [main] a 1172 environ_init: 0xA010660: OS2LIBPATH=C:\WINNT\system32\os2\dll;
  155    8455 [main] a 1172 environ_init: 0xA010690: OS=Windows_NT
  153    8608 [main] a 1172 environ_init: 0xA0106A8: OSTYPE=cygwin
  155    8763 [main] a 1172 environ_init: 0xA0106C0: PAGER=less
  154    8917 [main] a 1172 getwinenv: can't set native for PATH= since no environ yet
  193    9110 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (c:\bin, keep-rel, no-add-slash)
   86    9196 [main] a 1172 normalize_win32_path: c:\bin = normalize_win32_path (c:\bin)
   84    9280 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/c/bin = conv_to_posix_path (c:\bin)
   88    9368 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (e:\Utils\Cygwin-1.1.6\bin, keep-rel, no-add-slash)
   86    9454 [main] a 1172 normalize_win32_path: e:\Utils\Cygwin-1.1.6\bin = normalize_win32_path (e:\Utils\Cygwin-1.1.6\bin)
   94    9548 [main] a 1172 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (e:\Utils\Cygwin-1.1.6\bin)
   88    9636 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (d:\Perl\bin, keep-rel, no-add-slash)
  826   10462 [main] a 1172 normalize_win32_path: d:\Perl\bin = normalize_win32_path (d:\Perl\bin)
  158   10620 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/d/Perl/bin = conv_to_posix_path (d:\Perl\bin)
  102   10722 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (d:\Java\JDK1.2.2\bin, keep-rel, no-add-slash)
   89   10811 [main] a 1172 normalize_win32_path: d:\Java\JDK1.2.2\bin = normalize_win32_path (d:\Java\JDK1.2.2\bin)
   89   10900 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/d/Java/JDK1.2.2/bin = conv_to_posix_path (d:\Java\JDK1.2.2\bin)
   86   10986 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT\system32, keep-rel, no-add-slash)
   83   11069 [main] a 1172 normalize_win32_path: C:\WINNT\system32 = normalize_win32_path (C:\WINNT\system32)
   82   11151 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/c/WINNT/system32 = conv_to_posix_path (C:\WINNT\system32)
   85   11236 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT, keep-rel, no-add-slash)
   82   11318 [main] a 1172 normalize_win32_path: C:\WINNT = normalize_win32_path (C:\WINNT)
   81   11399 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/c/WINNT = conv_to_posix_path (C:\WINNT)
  138   11537 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT\System32\Wbem, keep-rel, no-add-slash)
   88   11625 [main] a 1172 normalize_win32_path: C:\WINNT\System32\Wbem = normalize_win32_path (C:\WINNT\System32\Wbem)
   84   11709 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/c/WINNT/System32/Wbem = conv_to_posix_path (C:\WINNT\System32\Wbem)
  238   11947 [main] a 1172 win_env::add_cache: posix /cygdrive/c/bin:/usr/bin:/cygdrive/d/Perl/bin:/cygdrive/d/Java/JDK1.2.2/bin:/cygdrive/c/WINNT/system32:/cygdrive/c/WINNT:/cygdrive/c/WINNT/System32/Wbem
   86   12033 [main] a 1172 win_env::add_cache: native PATH=c:\bin;e:\Utils\Cygwin-1.1.6\bin;d:\Perl\bin;d:\Java\JDK1.2.2\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem
   85   12118 [main] a 1172 posify: env var converted to PATH=/cygdrive/c/bin:/usr/bin:/cygdrive/d/Perl/bin:/cygdrive/d/Java/JDK1.2.2/bin:/cygdrive/c/WINNT/system32:/cygdrive/c/WINNT:/cygdrive/c/WINNT/System32/Wbem
  160   12278 [main] a 1172 environ_init: 0xA010750: PATH=/cygdrive/c/bin:/usr/bin:/cygdrive/d/Perl/bin:/cygdrive/d/Java/JDK1.2.2/bin:/cygdrive/c/WINNT/system32:/cygdrive/c/WINNT:/cygdrive/c/WINNT/System32/Wbem
  165   12443 [main] a 1172 environ_init: 0xA0106D0: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
  155   12598 [main] a 1172 environ_init: 0xA010710: PROCESSOR_ARCHITECTURE=x86
  154   12752 [main] a 1172 environ_init: 0xA010990: PROCESSOR_IDENTIFIER=x86 Family 6 Model 8 Stepping 3, GenuineIntel
  154   12906 [main] a 1172 environ_init: 0xA010730: PROCESSOR_LEVEL=6
  152   13058 [main] a 1172 environ_init: 0xA0109D8: PROCESSOR_REVISION=0803
  154   13212 [main] a 1172 environ_init: 0xA0109F8: PROGRAMFILES=C:\Program Files
  153   13365 [main] a 1172 environ_init: 0xA010A20: PWD=e:/afsrc/tip12/funkware1/com/funkware/community/module/mpack/services/mpackgroup/uicomponents
  157   13522 [main] a 1172 environ_init: 0xA010A88: SHELL=/bin/sh
  152   13674 [main] a 1172 environ_init: 0xA010AA0: SHLVL=2
  151   13825 [main] a 1172 environ_init: 0xA010AB0: SYSTEMDRIVE=C:
  184   14009 [main] a 1172 environ_init: 0xA010AC8: SYSTEMROOT=C:\WINNT
  156   14165 [main] a 1172 environ_init: 0xA010AE0: TCSHSUBSTHB=/local/bin/perl d:/perl/bin/perl.exe;
  155   14320 [main] a 1172 getwinenv: can't set native for TEMP= since no environ yet
  157   14477 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (e:\temp, no-keep-rel, no-add-slash)
   83   14560 [main] a 1172 normalize_win32_path: e:\temp = normalize_win32_path (e:\temp)
   83   14643 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/e/temp = conv_to_posix_path (e:\temp)
  226   14869 [main] a 1172 win_env::add_cache: posix /cygdrive/e/temp
   96   14965 [main] a 1172 win_env::add_cache: native TEMP=e:\temp
   79   15044 [main] a 1172 posify: env var converted to TEMP=/cygdrive/e/temp
  152   15196 [main] a 1172 environ_init: 0xA010B30: TEMP=/cygdrive/e/temp
  153   15349 [main] a 1172 environ_init: 0xA010B18: TERM=cygwin
  153   15502 [main] a 1172 getwinenv: can't set native for TMP= since no environ yet
  155   15657 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (e:\temp, no-keep-rel, no-add-slash)
   82   15739 [main] a 1172 normalize_win32_path: e:\temp = normalize_win32_path (e:\temp)
   82   15821 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/e/temp = conv_to_posix_path (e:\temp)
  241   16062 [main] a 1172 win_env::add_cache: posix /cygdrive/e/temp
   78   16140 [main] a 1172 win_env::add_cache: native TMP=e:\temp
   78   16218 [main] a 1172 posify: env var converted to TMP=/cygdrive/e/temp
  151   16369 [main] a 1172 environ_init: 0xA010C80: TMP=/cygdrive/e/temp
  185   16554 [main] a 1172 environ_init: 0xA010DB8: USER=altitude
  151   16705 [main] a 1172 environ_init: 0xA010DD0: USERDOMAIN=FEATHERS
  152   16857 [main] a 1172 environ_init: 0xA010DE8: USERNAME=altitude
  152   17009 [main] a 1172 environ_init: 0xA010E00: USERPROFILE=C:\Documents and Settings\altitude
  180   17189 [main] a 1172 environ_init: 0xA010E38: VENDOR=Microsoft
  153   17342 [main] a 1172 environ_init: 0xA010E50: VIM=e:\Utils\vim\vim57
  153   17495 [main] a 1172 environ_init: 0xA010E70: WGP=e:\Program Files\WGP
  152   17647 [main] a 1172 environ_init: 0xA010C70: WIN=1
  150   17797 [main] a 1172 environ_init: 0xA010E90: WINDIR=C:\WINNT
  152   17949 [main] a 1172 environ_init: 0xA010EA8: _=/usr/bin/strace
  126   18075 [main] a 1172 pinfo_init: pid 1172, pgid 1172
  177   18252 [main] a 1172 dtable::extend: size 32, fds 0x12010040
  100   18352 [main] a 1172 cygwin_set_impersonation_token: set_impersonation_token (-1)
 1531   19883 [main] a 1172 internal_getlogin: Domain: FEATHERS, Logon Server: FEATHERS
  193   20076 [main] a 1172 internal_getlogin: Cygwins Username: altitude
  104   20180 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (0)
   88   20268 [main] a 1172 _cygwin_istext_for_stdio:  _cifs: fd not open
   84   20352 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (1)
   80   20432 [main] a 1172 _cygwin_istext_for_stdio:  _cifs: fd not open
   80   20512 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (2)
   81   20593 [main] a 1172 _cygwin_istext_for_stdio:  _cifs: fd not open
  109   20702 [main] a 1172 _open: open (/etc/passwd, 0x20000)
  155   20857 [main] a 1172 dtable::build_fhandler: some disk file - cb 56, fd 3, fh 0x120101C0
   91   20948 [main] a 1172 fhandler_disk_file::open: (/etc/passwd, 0x20000)
  125   21073 [main] a 1172 mount_info::conv_to_win32_path: conv_to_win32_path (/etc/passwd)
   89   21162 [main] a 1172 normalize_posix_path: src /etc/passwd
   82   21244 [main] a 1172 normalize_posix_path: /etc/passwd = normalize_posix_path (/etc/passwd)
   88   21332 [main] a 1172 mount_info::conv_to_win32_path: e:\Utils\cygwin-1.1.6\etc\passwd(rel), e:\Utils\cygwin-1.1.6\etc\passwd(abs) 0x8(flags) = conv_to_win32_path (/etc/passwd)
  253   21585 [main] a 1172 symlink_info::check: not a symlink
   94   21679 [main] a 1172 symlink_info::check: 0 = symlink.check (e:\Utils\cygwin-1.1.6\etc\passwd, 0x240F2C5) (0x8)
  251   21930 [main] a 1172 path_conv::check: GetVolumeInformation(e:\) = OK, full_path(e:\Utils\cygwin-1.1.6\etc\passwd), set_has_acls(8)
  119   22049 [main] a 1172 fhandler_base::open: (e:\Utils\cygwin-1.1.6\etc\passwd, 0x20000)
  152   22201 [main] a 1172 fhandler_base::open: 156 = CreateFileA (e:\Utils\cygwin-1.1.6\etc\passwd, 0x80000000, 0x7, 0x610840E8, 0x3, 0x80, 0)
  100   22301 [main] a 1172 fhandler_base::open: filemode set to text
   86   22387 [main] a 1172 fhandler_base::open: 1 = fhandler_base::open (e:\Utils\cygwin-1.1.6\etc\passwd, 0x20000)
  166   22553 [main] a 1172 fhandler_disk_file::open: 1 = fhandler_disk_file::open (e:\Utils\cygwin-1.1.6\etc\passwd, 0x20000)
  117   22670 [main] a 1172 _open: 3 = open (/etc/passwd, 0x20000)
   83   22753 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (3)
   83   22836 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio says yes
  127   22963 [main] a 1172 fhandler_disk_file::fstat: 1 = GetFileInformationByHandle (e:\Utils\cygwin-1.1.6\etc\passwd, 156)
  110   23073 [main] a 1172 fhandler_disk_file::fstat: 0 = fstat (, 0x240F950) st_atime=3A3A909F st_size=503, st_mode=0x81A4, st_ino=208507, sizeof=64
   91   23164 [main] a 1172 _fstat: 0 = fstat (3, 240F950)
   87   23251 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (3)
   80   23331 [main] a 1172 _cygwin_istext_for_stdio:  _cifs: get_*_binary
   82   23413 [main] a 1172 setmode_helper: setmode: file was cle now raw
   81   23494 [main] a 1172 setmode: setmode (3, binary) returns text
   80   23574 [main] a 1172 _read: read (3, 0xA011030, 1024) blocking, sigcatchers 0
   82   23656 [main] a 1172 _read: non-interruptible read
   93   23749 [main] a 1172 fhandler_base::read: returning 503 chars, binary mode
   81   23830 [main] a 1172 _read: 503 = read (3</etc/passwd>, 0xA011030, 1024), errno 0
   83   23913 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (3)
  123   24036 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio says yes
   82   24118 [main] a 1172 setmode_helper: setmode: file was raw now cle
   80   24198 [main] a 1172 setmode: setmode (3, text) returns binary
  772   24970 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (3)
   81   25051 [main] a 1172 _cygwin_istext_for_stdio:  _cifs: get_*_binary
   80   25131 [main] a 1172 setmode_helper: setmode: file was cle now raw
   80   25211 [main] a 1172 setmode: setmode (3, binary) returns text
   79   25290 [main] a 1172 _read: read (3, 0xA011030, 1024) blocking, sigcatchers 0
   81   25371 [main] a 1172 _read: non-interruptible read
   83   25454 [main] a 1172 _read: 0 = read (3</etc/passwd>, 0xA011030, 1024), errno 0
   82   25536 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (3)
   80   25616 [main] a 1172 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio says yes
   81   25697 [main] a 1172 setmode_helper: setmode: file was raw now cle
   79   25776 [main] a 1172 setmode: setmode (3, text) returns binary
   90   25866 [main] a 1172 _close: close (3)
   92   25958 [main] a 1172 fhandler_base::close: handle 0x9C
  118   26076 [main] a 1172 _close: 0 = close (3)
  290   26366 [main] a 1172 sigproc_init: process/signal handling enabled(1)
  205   26571 [main] a 1172 dtable::build_fhandler: /dev/conin - cb 116, fd 0, fh 0x120101C0
   98   26669 [main] a 1172 fhandler_base::init: created new fhandler_base for handle 0xB
  130   26799 [main] a 1172 open_shared: name (null), shared 0x140C0000, h 0xB0
  190   26989 [main] a 1172 fhandler_termios::set_ctty: attached tty1073741824 sid 1172, pid 1172, tty->pgid 1172, tty->sid 1172
   93   27082 [main] a 1172 fhandler_termios::set_ctty: resetting tty1073741824 sid.  Was 1172, now 1172.  pgid was 1172, now 1172.
  119   27201 [main] a 1172 fhandler_console::open: opened conin$ 0x17, conout$ 0x1B
  107   27308 [main] a 1172 fhandler_console::output_tcsetattr: 0 = tcsetattr (,140C0018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  375   27683 [sig] a 1172 wait_sig: sigcatch_nonmain 0xB8, sigcatch_main 0xBC
  117   27800 [sig] a 1172 wait_sig: Ready.  dwProcessid 1172
  116   27916 [main] a 1172 dtable::init_std_file_from_handle: fd 0, handle 0xB
  202   28118 [main] a 1172 dtable::build_fhandler: some disk file - cb 56, fd 1, fh 0x12010338
  103   28221 [main] a 1172 fhandler_base::init: created new fhandler_base for handle 0x88
   93   28314 [main] a 1172 dtable::init_std_file_from_handle: fd 1, handle 0x88
  113   28427 [main] a 1172 dtable::build_fhandler: /dev/conout - cb 116, fd 2, fh 0x12010440
   98   28525 [main] a 1172 fhandler_base::init: created new fhandler_base for handle 0x1F
  183   28708 [main] a 1172 fhandler_termios::set_ctty: attached tty1073741824 sid 1172, pid 1172, tty->pgid 1172, tty->sid 1172
   98   28806 [main] a 1172 fhandler_termios::set_ctty: resetting tty1073741824 sid.  Was 1172, now 1172.  pgid was 1172, now 1172.
   93   28899 [main] a 1172 fhandler_console::open: opened conin$ 0xB, conout$ 0x33
  154   29053 [main] a 1172 fhandler_console::output_tcsetattr: 0 = tcsetattr (,140C0018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
   95   29148 [main] a 1172 dtable::init_std_file_from_handle: fd 2, handle 0x1F
  184   29332 [main] a 1172 build_argv: argv[0] = 'a.exe'
  104   29436 [main] a 1172 build_argv: argv[1] = '../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class'
   95   29531 [main] a 1172 build_argv: argc 2
   97   29628 [main] a 1172 dll_list::init: here
   91   29719 [main] a 1172 dll_crt0_1: user_data->main 0x401060
  108   29827 [main] a 1172 sig_send: pid 1172, signal -2, its_me 1
   96   29923 [sig] a 1172 wait_sig: awake
   85   30008 [sig] a 1172 wait_sig: processing signal -2
   85   30093 [sig] a 1172 wait_sig: looping
   93   30186 [main] a 1172 sig_send: Waiting for thiscomplete 0xD0
   91   30277 [main] a 1172 sig_send: returning 0 from sending signal -2
  146   30423 [main] a 1172 fhandler_disk_file::fstat: 1 = GetFileInformationByHandle (some disk file, 136)
  110   30533 [main] a 1172 fhandler_disk_file::fstat: 0 = fstat (, 0x240FA64) st_atime=3A3A90A1 st_size=17792, st_mode=0x81A4, st_ino=0, sizeof=64
   97   30630 [main] a 1172 _fstat: 0 = fstat (1, 240FA64)
  115   30745 [main] a 1172 _write: write (1, 0xA0117B0, 158)
   94   30839 [main] a 1172 fhandler_base::write: text write
../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class
   97   30936 [main] a 1172 fhandler_base::write: 158 = write (0xA0117B0, 158)
   90   31026 [main] a 1172 _write: 158 = write (1, 0xA0117B0, 158)
   93   31119 [main] a 1172 stat_worker: lstat (../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class, 0x240FDC4)
  108   31227 [main] a 1172 mount_info::conv_to_win32_path: conv_to_win32_path (../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class)
  103   31330 [main] a 1172 normalize_posix_path: src ../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class
  111   31441 [main] a 1172 mount_info::conv_to_posix_path: conv_to_posix_path (e:\afsrc\tip12\funkware1\com\funkware\community\module\mpack\services\mpackgroup\uicomponents, no-keep-rel, no-add-slash)
  155   31596 [main] a 1172 normalize_win32_path: e:\afsrc\tip12\funkware1\com\funkware\community\module\mpack\services\mpackgroup\uicomponents = normalize_win32_path (e:\afsrc\tip12\funkware1\com\funkware\community\module\mpack\services\mpackgroup\uicomponents)
  105   31701 [main] a 1172 mount_info::conv_to_posix_path: /cygdrive/e/afsrc/tip12/funkware1/com/funkware/community/module/mpack/services/mpackgroup/uicomponents = conv_to_posix_path (e:\afsrc\tip12\funkware1\com\funkware\community\module\mpack\services\mpackgroup\uicomponents)
  103   31804 [main] a 1172 cwdstuff::get: cygheap->root: (null), posix: /cygdrive/e/afsrc/tip12/funkware1/com/funkware/community/module/mpack/services/mpackgroup/uicomponents
   96   31900 [main] a 1172 cwdstuff::get: (/cygdrive/e/afsrc/tip12/funkware1/com/funkware/community/module/mpack/services/mpackgroup/uicomponents) = cwdstuff::get (0x240F184, 260, 1, 0), errno 0
   96   31996 [main] a 1172 normalize_posix_path: ENAMETOOLONG = normalize_posix_path (../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class)
  113   32109 [main] a 1172 mount_info::conv_to_win32_path: 91 = conv_to_win32_path (../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class)
   99   32208 [main] a 1172 stat_worker: -1 = lstat (../../../../../../../../../WINNT4.0_DBG/funkware1/WEB-INF/classes/com/funkware/community/module/mpack/services/mpackgroup/uicomponents/UIPGrpSchResults.class, 0x240FDC4)
  123   32331 [main] a 1172 _write: write (1, 0xA0117B0, 39)
   91   32422 [main] a 1172 fhandler_base::write: text write
Return: 91: File or path name too long
   93   32515 [main] a 1172 fhandler_base::write: 39 = write (0xA0117B0, 39)
   90   32605 [main] a 1172 _write: 39 = write (1, 0xA0117B0, 39)
   93   32698 [main] a 1172 _write: write (1, 0xA0117B0, 6)
   89   32787 [main] a 1172 fhandler_base::write: text write
Hello
   92   32879 [main] a 1172 fhandler_base::write: 6 = write (0xA0117B0, 6)
   89   32968 [main] a 1172 _write: 6 = write (1, 0xA0117B0, 6)
   98   33066 [main] a 1172 do_exit: do_exit (6)
   92   33158 [main] a 1172 void: 0x0 = signal (20, 0x1)
   88   33246 [main] a 1172 void: 0x0 = signal (1, 0x1)
   87   33333 [main] a 1172 void: 0x0 = signal (2, 0x1)
   89   33422 [main] a 1172 void: 0x0 = signal (3, 0x1)
  120   33542 [main] a 1172 fhandler_base::close: handle 0x88
  124   33666 [main] a 1172 proc_terminate: nchildren 0, nzombies 0
   89   33755 [main] a 1172 proc_terminate: leaving
   89   33844 [main] a 1172 sigproc_terminate: entering
   88   33932 [main] a 1172 sigproc_terminate: done
  237   34169 [main] a 1172 __to_clock_t: dwHighDateTime 0, dwLowDateTime 0
   91   34260 [main] a 1172 __to_clock_t: total 00000000 00000000
   90   34350 [main] a 1172 __to_clock_t: dwHighDateTime 0, dwLowDateTime 300432
   90   34440 [main] a 1172 __to_clock_t: total 00000000 0000001E
   89   34529 [main] a 1172 _pinfo::exit: Calling ExitProcess 6


#
# OUTPUT FROM cygcheck
#
Cygnus Win95/NT Configuration Diagnostics
Current System Time: Fri Dec 15 12:59:47 2000

WinNT Ver 5.0 build 2195 Service Pack 1

Path: /cygdrive/c/bin
 /usr/bin
 /cygdrive/d/Perl/bin
 /cygdrive/d/Java/JDK1.2.2/bin
 /cygdrive/c/WINNT/system32
 /cygdrive/c/WINNT
 /cygdrive/c/WINNT/System32/Wbem

SysDir: C:\WINNT\System32
WinDir: C:\WINNT

HOME = `/cygdrive/c/Users/altitude'
PWD = `e:/tmp/ctmp'
USER = `altitude'

!E: = `e:\tmp\ctmp'
ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\altitude\Application Data'
CLASSPATH = `e:\Program Files\WGP\bin\WMLScript.jar'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMPUTERNAME = `FEATHERS'
COMSPEC = `C:\WINNT\system32\cmd.exe'
CVSEDITOR = `vim.exe'
CVSROOT = `:pserver:altitude@cvsserver:/home/cvs/master'
DIR = `c:/Users/altitude'
EDITOR = `vi'
GROUP = `unknown'
HOMEDRIVE = `C:'
HOMEPATH = `\'
HOST = `FEATHERS'
HOSTTYPE = `NT 5.0 Build 2195 (Service Pack 1)'
JAVA_HOME = `d:\Java\JDK1.2.2'
LESS = `-emirCX'
LOGNAME = `altitude'
LOGONSERVER = `\\FEATHERS'
MACHTYPE = `i686'
NUMBER_OF_PROCESSORS = `1'
OS = `Windows_NT'
OS2LIBPATH = `C:\WINNT\system32\os2\dll;'
OSTYPE = `WindowsNT'
PAGER = `less'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 8 Stepping 3, GenuineIntel'
PROCESSOR_LEVEL = `6'
PROCESSOR_REVISION = `0803'
PROGRAMFILES = `C:\Program Files'
SHLVL = `1'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINNT'
TCSHSUBSTHB = `/local/bin/perl d:/perl/bin/perl.exe;'
TEMP = `/cygdrive/e/temp'
TMP = `/cygdrive/e/temp'
USERDOMAIN = `FEATHERS'
USERNAME = `altitude'
USERPROFILE = `C:\Documents and Settings\altitude'
VENDOR = `Microsoft'
VIM = `e:\Utils\vim\vim57'
WGP = `e:\Program Files\WGP'
WIN = `1'
WINDIR = `C:\WINNT'
TERM = `cygwin'
TZ = `PST8PDT7,M4.1.0/2,M10.5.0/2'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x00000020
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\05
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\06
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\07
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\08
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\09
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0A
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0B
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0C
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0D
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0E
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0F
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\10
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\11
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\12
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\13
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\14
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\15
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\16
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\17
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\18
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\19
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1A
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1B
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1C
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `e:\Utils\cygwin-1.1.6'
  flags = 0x00000008
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `e:/Utils/cygwin-1.1.6/bin'
  flags = 0x00000008
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `e:/Utils/cygwin-1.1.6/lib'
  flags = 0x00000008
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\05
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\06
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\07
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\08
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\09
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0E
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0F
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\10
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\11
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\12
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\13
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\14
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\15
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\16
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\17
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\18
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\19
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1D

a:  fd           N/A    N/A
c:  hd  FAT     1963Mb  99% CP    UN           C DRIVE
d:  hd  FAT32   4074Mb  41% CP    UN           D DRIVE
e:  hd  NTFS   12956Mb  94% CP CS UN PA FC     E DRIVE
f:  cd  UDF     4353Mb 100%    CS UN           TRON
j:  net NTFS   241260Mb  97%          PA        ??

e:\Utils\cygwin-1.1.6\bin  /usr/bin  system  textmode
e:\Utils\cygwin-1.1.6\lib  /usr/lib  system  textmode
e:\Utils\cygwin-1.1.6  /        system  textmode

Found: e:\Utils\cygwin-1.1.6\bin\bash.exe
Found: e:\Utils\cygwin-1.1.6\bin\cat.exe
Found: e:\Utils\cygwin-1.1.6\bin\cpp.exe
Found: e:\Utils\cygwin-1.1.6\bin\find.exe
Found: e:\Utils\cygwin-1.1.6\bin\gcc.exe
Found: e:\Utils\cygwin-1.1.6\bin\gdb.exe
Found: e:\Utils\cygwin-1.1.6\bin\ld.exe
Found: e:\Utils\cygwin-1.1.6\bin\ls.exe
Found: e:\Utils\cygwin-1.1.6\bin\make.exe
Found: e:\Utils\cygwin-1.1.6\bin\sh.exe

   56k 2000/12/03 e:\Utils\cygwin-1.1.6\bin\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz21.0.dll" v0.0 ts=2000/11/20 15:53
   83k 2000/11/25 e:\Utils\cygwin-1.1.6\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2000/11/24 21:42
   18k 2000/10/23 e:\Utils\cygwin-1.1.6\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2000/10/22 19:26
   17k 2000/11/30 e:\Utils\cygwin-1.1.6\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2000/11/29 18:28
   14k 2000/10/23 e:\Utils\cygwin-1.1.6\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2000/10/23 12:02
   81k 2000/11/26 e:\Utils\cygwin-1.1.6\bin\cygitcl30.dll - os=4.0 img=1.0 sys=4.0
                  "cygitcl30.dll" v0.0 ts=2000/11/25 17:43
   35k 2000/11/26 e:\Utils\cygwin-1.1.6\bin\cygitk30.dll - os=4.0 img=1.0 sys=4.0
                  "cygitk30.dll" v0.0 ts=2000/11/25 17:43
   45k 2000/10/22 e:\Utils\cygwin-1.1.6\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig1.dll" v0.0 ts=2000/10/22 16:06
  119k 2000/10/23 e:\Utils\cygwin-1.1.6\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2000/10/22 17:58
   53k 2000/11/25 e:\Utils\cygwin-1.1.6\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2000/11/24 21:42
  300k 2000/11/25 e:\Utils\cygwin-1.1.6\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2000/11/24 21:40
   35k 2000/11/25 e:\Utils\cygwin-1.1.6\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2000/11/24 21:41
  162k 2000/10/23 e:\Utils\cygwin-1.1.6\bin\cygpng2.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng2.dll" v0.0 ts=2000/10/22 17:40
  108k 2000/11/30 e:\Utils\cygwin-1.1.6\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2000/11/29 18:28
  390k 2000/11/26 e:\Utils\cygwin-1.1.6\bin\cygtcl80.dll - os=4.0 img=1.0 sys=4.0
                  "cygtcl80.dll" v0.0 ts=2000/11/25 17:39
    5k 2000/11/26 e:\Utils\cygwin-1.1.6\bin\cygtclpip80.dll - os=4.0 img=1.0 sys=4.0
   10k 2000/11/26 e:\Utils\cygwin-1.1.6\bin\cygtclreg80.dll - os=4.0 img=1.0 sys=4.0
                  "cygtclreg80.dll" v0.0 ts=2000/11/25 17:39
  243k 2000/10/23 e:\Utils\cygwin-1.1.6\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff3.dll" v0.0 ts=2000/10/22 18:14
  623k 2000/11/26 e:\Utils\cygwin-1.1.6\bin\cygtk80.dll - os=4.0 img=1.0 sys=4.0
                  "cygtk80.dll" v0.0 ts=2000/11/25 17:43
   41k 2000/11/20 e:\Utils\cygwin-1.1.6\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX4.dll" v0.0 ts=2000/11/19 18:41
   45k 2000/11/20 e:\Utils\cygwin-1.1.6\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-X4.dll" v0.0 ts=2000/11/19 18:45
   49k 2000/10/23 e:\Utils\cygwin-1.1.6\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2000/10/22 17:22
  609k 2000/11/22 e:\Utils\cygwin-1.1.6\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2000/11/21 18:00
    Cygwin DLL version info:
        dll major: 1001
        dll minor: 6
        dll epoch: 19
        dll bad signal mask: 19005
        dll old termios: 5
        dll malloc env: 28
        api major: 0
        api minor: 30
        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: Tue Nov 21 21:00:16 EST 2000
        shared id: cygwin1S3

Use -h to see help about each section



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


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