public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* Insight build problem on Cygwin
@ 2003-02-11 17:14 David Mc Kenna
  2003-02-11 17:56 ` Keith Seitz
  2003-02-11 21:42 ` Rolf Campbell
  0 siblings, 2 replies; 20+ messages in thread
From: David Mc Kenna @ 2003-02-11 17:14 UTC (permalink / raw)
  To: insight

Hi all,

Before my problem just to say thanks to everyone who brought us the new version
of TCL. It makes a huge difference.

I have managed to compile Insight from the latest CVS archive ( Today ) and
have come across an unusual problem, it won't launch.

To be more precise I can launch gdb as arm-elf-gdb or arm-elf-insight -nw and
I get, as expected, the vanilla version of gdb. But when I type arm-elf-insight
or arm-elf-gdb -w the program begins to launch but it just dies. I have seen
insight showing up in the list of processes running but it just dies? 

Any ideas??

Here is my compile script:
rm -rf src/tix
$src_root/src/configure \
    --target=$target --host=$host\
    --prefix=$prefix \
    --exec-prefix=$prefix -v > ../logs/$target-$insightver-configure.log 2>&1


# 	Make insight

make -w all install CC='gcc -mwin32'  > ../logs/$target-$insightver-make.out
2>&1

where target = arm-elf and host = i686-pc-cygwin


Cheers,
Dave


--
http://www.iol.ie

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on Cygwin
  2003-02-11 17:14 Insight build problem on Cygwin David Mc Kenna
@ 2003-02-11 17:56 ` Keith Seitz
  2003-02-11 21:42 ` Rolf Campbell
  1 sibling, 0 replies; 20+ messages in thread
From: Keith Seitz @ 2003-02-11 17:56 UTC (permalink / raw)
  To: mckennad; +Cc: insight

On Tue, 2003-02-11 at 09:14, David Mc Kenna wrote:

> I have managed to compile Insight from the latest CVS archive ( Today ) and
> have come across an unusual problem, it won't launch.

Insight is currently broken. See
<http://sources.redhat.com/ml/insight/2003-q1/msg00086.html>.

> Any ideas??

Yup. :-)

As a temporary workaround, you could use this patch.

Index: main.c
===================================================================
RCS file: /cvs/src/src/gdb/main.c,v
retrieving revision 1.27
diff -u -p -r1.27 main.c
--- main.c	7 Feb 2003 00:27:30 -0000	1.27
+++ main.c	11 Feb 2003 17:54:06 -0000
@@ -555,6 +555,7 @@ extern int gdbtk_test (char *);
   /* Install the default UI.  All the interpreters should have had a
      look at things by now.  Initialize the default interpreter. */
 
+  if (init_ui_hook == NULL)
   {
     /* Find it.  */
     struct interp *interp = interp_lookup (interpreter_p);


> make -w all install CC='gcc -mwin32'  > ../logs/$target-$insightver-make.out
> 2>&1
> 

BTW, as cgf points out, you should not need to specify -mwin32. The
build should do this automatically when necessary.

Keith

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on Cygwin
  2003-02-11 17:14 Insight build problem on Cygwin David Mc Kenna
  2003-02-11 17:56 ` Keith Seitz
@ 2003-02-11 21:42 ` Rolf Campbell
  2003-02-12  4:45   ` Insight build problem on cygwin Christopher Faylor
  1 sibling, 1 reply; 20+ messages in thread
From: Rolf Campbell @ 2003-02-11 21:42 UTC (permalink / raw)
  To: insight

David Mc Kenna wrote:
> Hi all,
> 
> Before my problem just to say thanks to everyone who brought us the new version
> of TCL. It makes a huge difference.
> 
> I have managed to compile Insight from the latest CVS archive ( Today ) and
> have come across an unusual problem, it won't launch.
> 
> To be more precise I can launch gdb as arm-elf-gdb or arm-elf-insight -nw and
> I get, as expected, the vanilla version of gdb. But when I type arm-elf-insight
> or arm-elf-gdb -w the program begins to launch but it just dies. I have seen
> insight showing up in the list of processes running but it just dies? 
> 
> Any ideas??

I have seen this same behavior with the native version of insight 
(2003-01-28-cvs, the one that is currently avaiable on the cygwin mirrors).


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-11 21:42 ` Rolf Campbell
@ 2003-02-12  4:45   ` Christopher Faylor
  0 siblings, 0 replies; 20+ messages in thread
From: Christopher Faylor @ 2003-02-12  4:45 UTC (permalink / raw)
  To: insight

On Tue, Feb 11, 2003 at 04:35:57PM -0500, Rolf Campbell wrote:
>David Mc Kenna wrote:
>>Hi all,
>>
>>Before my problem just to say thanks to everyone who brought us the new 
>>version
>>of TCL. It makes a huge difference.
>>
>>I have managed to compile Insight from the latest CVS archive ( Today ) and
>>have come across an unusual problem, it won't launch.
>>
>>To be more precise I can launch gdb as arm-elf-gdb or arm-elf-insight
>>-nw and I get, as expected, the vanilla version of gdb.  But when I
>>type arm-elf-insight or arm-elf-gdb -w the program begins to launch but
>>it just dies.  I have seen insight showing up in the list of processes
>>running but it just dies?
>>
>>Any ideas??
>
>I have seen this same behavior with the native version of insight
>(2003-01-28-cvs, the one that is currently avaiable on the cygwin
>mirrors).

Right, except that when you run "insight" it brings up a GUI version of
gdb that you can use for debugging.  Other than the fact that the
program begins to launch, continues, and then works fine, the problem is
exactly the same.

cgf

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-20 17:55               ` Keith Seitz
@ 2003-02-21 10:16                 ` Christopher Faylor
  0 siblings, 0 replies; 20+ messages in thread
From: Christopher Faylor @ 2003-02-21 10:16 UTC (permalink / raw)
  To: Keith Seitz; +Cc: Rolf Campbell, insight

On Thu, Feb 20, 2003 at 08:18:34AM -0800, Keith Seitz wrote:
>On Wed, 2003-02-19 at 17:05, Rolf Campbell wrote:
>> Oops, replace "where no files of those names" with "was a gdbtk.ini in 
>> /home/rcampbell, I deleted it and insight now works fine".  It never 
>> occured to me to look for a ".ini" file.
>
>Cool. Had me really worried there for a moment. I don't know why we use
>gdbtk.ini on windows, either. I think some Nazi management at Cygnus
>crammed it down our throats. We really ought to just add some code to
>change it to .gdbtkinit or .insightrc...

FWIW, I changed gdb to use .gdbinit instead of gdb.ini a while ago, so
there's some precedent there.

gdb issues a warning if it finds a gdb.ini now.

cgf

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-20  2:36             ` Rolf Campbell
@ 2003-02-20 17:55               ` Keith Seitz
  2003-02-21 10:16                 ` Christopher Faylor
  0 siblings, 1 reply; 20+ messages in thread
From: Keith Seitz @ 2003-02-20 17:55 UTC (permalink / raw)
  To: Rolf Campbell; +Cc: insight

On Wed, 2003-02-19 at 17:05, Rolf Campbell wrote:
> Oops, replace "where no files of those names" with "was a gdbtk.ini in 
> /home/rcampbell, I deleted it and insight now works fine".  It never 
> occured to me to look for a ".ini" file.

Cool. Had me really worried there for a moment. I don't know why we use
gdbtk.ini on windows, either. I think some Nazi management at Cygnus
crammed it down our throats. We really ought to just add some code to
change it to .gdbtkinit or .insightrc...

Keith


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-20  1:05           ` Keith Seitz
@ 2003-02-20  2:36             ` Rolf Campbell
  2003-02-20 17:55               ` Keith Seitz
  0 siblings, 1 reply; 20+ messages in thread
From: Rolf Campbell @ 2003-02-20  2:36 UTC (permalink / raw)
  To: insight

Keith Seitz wrote:
> On Wed, 2003-02-19 at 14:49, Rolf Campbell wrote:
> 
>>"tk set ::env(HOME)" -> "/home/rcampbell"
>>I checked my whole hard-drive, and there where no files of those names.
> 
> 
> Fudge. I cannot image what the problem is, since this works for me and
> several other people.
> 
> Let's try one of two things (you pick):
> 1) I can send you/put up for ftp my copy of the Insight executable
> 2) You can send me/put up for ftp your copy of the insight executable
> 
> (Remind me again -- where did you get insight? The cygwin gdb package
> that was released yesterday?)
> 
> Keith
Oops, replace "where no files of those names" with "was a gdbtk.ini in 
/home/rcampbell, I deleted it and insight now works fine".  It never 
occured to me to look for a ".ini" file.


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-19 22:54         ` Rolf Campbell
@ 2003-02-20  1:05           ` Keith Seitz
  2003-02-20  2:36             ` Rolf Campbell
  0 siblings, 1 reply; 20+ messages in thread
From: Keith Seitz @ 2003-02-20  1:05 UTC (permalink / raw)
  To: Rolf Campbell; +Cc: insight

On Wed, 2003-02-19 at 14:49, Rolf Campbell wrote:
> "tk set ::env(HOME)" -> "/home/rcampbell"
> I checked my whole hard-drive, and there where no files of those names.

Fudge. I cannot image what the problem is, since this works for me and
several other people.

Let's try one of two things (you pick):
1) I can send you/put up for ftp my copy of the Insight executable
2) You can send me/put up for ftp your copy of the insight executable

(Remind me again -- where did you get insight? The cygwin gdb package
that was released yesterday?)

Keith


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-19 22:49       ` Keith Seitz
@ 2003-02-19 22:54         ` Rolf Campbell
  2003-02-20  1:05           ` Keith Seitz
  0 siblings, 1 reply; 20+ messages in thread
From: Rolf Campbell @ 2003-02-19 22:54 UTC (permalink / raw)
  To: insight

Keith Seitz wrote:
> On Wed, 2003-02-19 at 07:42, Rolf Campbell wrote:
> 
> 
>>Here's my hidden home files:
>>
>>$ ls -1d ~/.*
>>/home/rcampbell/./
>>/home/rcampbell/../
>>/home/rcampbell/.Xresources
>>/home/rcampbell/.bash_history
>>/home/rcampbell/.bashrc
>>/home/rcampbell/.emacs.d/
>>/home/rcampbell/.emacs.el
>>/home/rcampbell/.emacs.elc
>>/home/rcampbell/.inputrc
>>/home/rcampbell/.ssh/
>>I don't have a copy of insight that has debug symbols in it, so I
>>can't run it under gdb. And I'm not in a position right now to download
>>the source and compile that. I did post an strace of a run a while back
>>though.
> 
> 
> For giggles, can you search your drives for "gdbtk.ini", ".gdbtkinit",
> ".gdbinit", and "gdb.ini"? There must be something going on with
> preferences.
> 
> When you start up insight -nx, open a Console Window and type "tk set
> ::env(HOME)", what does it return? Is there a startup file in that
> directory?
> 
> Keith

"tk set ::env(HOME)" -> "/home/rcampbell"
I checked my whole hard-drive, and there where no files of those names.



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-17 16:27     ` Keith Seitz
  2003-02-17 16:49       ` Rolf Campbell
@ 2003-02-19 22:49       ` Keith Seitz
  2003-02-19 22:54         ` Rolf Campbell
  1 sibling, 1 reply; 20+ messages in thread
From: Keith Seitz @ 2003-02-19 22:49 UTC (permalink / raw)
  To: Rolf Campbell; +Cc: insight

On Wed, 2003-02-19 at 07:42, Rolf Campbell wrote:

> Here's my hidden home files:
>
> $ ls -1d ~/.*
> /home/rcampbell/./
> /home/rcampbell/../
> /home/rcampbell/.Xresources
> /home/rcampbell/.bash_history
> /home/rcampbell/.bashrc
> /home/rcampbell/.emacs.d/
> /home/rcampbell/.emacs.el
> /home/rcampbell/.emacs.elc
> /home/rcampbell/.inputrc
> /home/rcampbell/.ssh/
>I don't have a copy of insight that has debug symbols in it, so I
>can't run it under gdb. And I'm not in a position right now to download
>the source and compile that. I did post an strace of a run a while back
>though.

For giggles, can you search your drives for "gdbtk.ini", ".gdbtkinit",
".gdbinit", and "gdb.ini"? There must be something going on with
preferences.

When you start up insight -nx, open a Console Window and type "tk set
::env(HOME)", what does it return? Is there a startup file in that
directory?

Keith


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-17 16:27     ` Keith Seitz
@ 2003-02-17 16:49       ` Rolf Campbell
  2003-02-19 22:49       ` Keith Seitz
  1 sibling, 0 replies; 20+ messages in thread
From: Rolf Campbell @ 2003-02-17 16:49 UTC (permalink / raw)
  To: insight

Keith Seitz wrote:
> On Sat, 2003-02-15 at 14:11, Rolf Campbell wrote:
> 
>>Ok, I'm now running "2003-02-15-cvs (cygwin-special)" from the cygwin 
>>net binary release.  The problem associated with opening the registers 
>>window is gone, but I still cannot launch insight without "-nx".
> 
> 
> Hmm. Do you have this patch?
> 
> 2003-02-14  Keith Seitz  <keiths@redhat.com>
> 
>         From Chris Faylor <cgf@redhat.com>:
>         * generic/gdbtk-main.c (main): Initialize args.interpreter_p.
Well, I don't know for sure, but since it was Chris who released the 
cygwin version on the 15th, I suspect that he included his own patch.

> If so, could you explain to me what happens when it doesn't start? (I'm
> building a cygwin version now, but it'll take several hours.)
> 
> Keith


It does 0.8 seconds of absolutely nothing (no text output, no error 
message, nothing), then terminates.


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-15 22:11   ` Rolf Campbell
@ 2003-02-17 16:27     ` Keith Seitz
  2003-02-17 16:49       ` Rolf Campbell
  2003-02-19 22:49       ` Keith Seitz
  0 siblings, 2 replies; 20+ messages in thread
From: Keith Seitz @ 2003-02-17 16:27 UTC (permalink / raw)
  To: Rolf Campbell; +Cc: insight

On Sat, 2003-02-15 at 14:11, Rolf Campbell wrote:
> Ok, I'm now running "2003-02-15-cvs (cygwin-special)" from the cygwin 
> net binary release.  The problem associated with opening the registers 
> window is gone, but I still cannot launch insight without "-nx".

Hmm. Do you have this patch?

2003-02-14  Keith Seitz  <keiths@redhat.com>

        From Chris Faylor <cgf@redhat.com>:
        * generic/gdbtk-main.c (main): Initialize args.interpreter_p.

If so, could you explain to me what happens when it doesn't start? (I'm
building a cygwin version now, but it'll take several hours.)

Keith


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-13 22:43 ` Keith Seitz
@ 2003-02-15 22:11   ` Rolf Campbell
  2003-02-17 16:27     ` Keith Seitz
  0 siblings, 1 reply; 20+ messages in thread
From: Rolf Campbell @ 2003-02-15 22:11 UTC (permalink / raw)
  To: insight

Keith Seitz wrote:
> On Thu, 2003-02-13 at 14:04, Rolf Campbell wrote:
>>I ran "insight -nx", then I click "View"->"Registers".  I get a message
>>box "Quit this debugging session?", and then "Create a core file for
>>GDB?".  If I say no to both, then the register window does open, with no
>>values.
> 
> 
> Ok, that's it. That's the bug I just "fixed":
> 
> 2003-02-11  Keith R Seitz  <keiths@redhat.com>
> 
>         * generic/gdbtk-register.c (register_changed_p): If the selected
>         frame is NULL, do not call frame_register_read, since that will
>         now cause an internal error.
> 
> Keith
Ok, I'm now running "2003-02-15-cvs (cygwin-special)" from the cygwin 
net binary release.  The problem associated with opening the registers 
window is gone, but I still cannot launch insight without "-nx".


^ permalink raw reply	[flat|nested] 20+ messages in thread

* RE: Insight build problem on cygwin
  2003-02-13 22:04 Rolf Campbell
@ 2003-02-13 22:43 ` Keith Seitz
  2003-02-15 22:11   ` Rolf Campbell
  0 siblings, 1 reply; 20+ messages in thread
From: Keith Seitz @ 2003-02-13 22:43 UTC (permalink / raw)
  To: Rolf Campbell; +Cc: insight

On Thu, 2003-02-13 at 14:04, Rolf Campbell wrote:
> I ran "insight -nx", then I click "View"->"Registers".  I get a message
> box "Quit this debugging session?", and then "Create a core file for
> GDB?".  If I say no to both, then the register window does open, with no
> values.

Ok, that's it. That's the bug I just "fixed":

2003-02-11  Keith R Seitz  <keiths@redhat.com>

        * generic/gdbtk-register.c (register_changed_p): If the selected
        frame is NULL, do not call frame_register_read, since that will
        now cause an internal error.

Keith


^ permalink raw reply	[flat|nested] 20+ messages in thread

* RE: Insight build problem on cygwin
@ 2003-02-13 22:04 Rolf Campbell
  2003-02-13 22:43 ` Keith Seitz
  0 siblings, 1 reply; 20+ messages in thread
From: Rolf Campbell @ 2003-02-13 22:04 UTC (permalink / raw)
  Cc: insight

> -----Original Message-----
> From: Keith Seitz [mailto:keiths@redhat.com] 
> Sent: Thursday, February 13, 2003 5:02 PM
> To: Chris Faylor
> Cc: Rolf Campbell; insight@sourceware.org
> Subject: Re: Insight build problem on cygwin
> 
> 
> On Thu, 2003-02-13 at 13:07, Christopher Faylor wrote:
> > Wasn't this supposedly with the cygwin net release binary 
> version of 
> > insight?
> 
> Oh. That complicates things.
> 
> >   That wouldn't be affected by this.
> 
> I think it may have... Rolf said that "-nx" allows insight to 
> run. I believe the problem was that he has a register window 
> open. Try this... Run insight with no executable. Open the 
> register window. It'll crash with an internal error (which 
> may or may not be visible on cygwin...)
> 
> Keith

I ran "insight -nx", then I click "View"->"Registers".  I get a message
box "Quit this debugging session?", and then "Create a core file for
GDB?".  If I say no to both, then the register window does open, with no
values.

-Rolf

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-13 21:06   ` Christopher Faylor
@ 2003-02-13 21:57     ` Keith Seitz
  0 siblings, 0 replies; 20+ messages in thread
From: Keith Seitz @ 2003-02-13 21:57 UTC (permalink / raw)
  To: Chris Faylor; +Cc: Rolf Campbell, insight

On Thu, 2003-02-13 at 13:07, Christopher Faylor wrote:
> Wasn't this supposedly with the cygwin net release binary version of
> insight?

Oh. That complicates things.

>   That wouldn't be affected by this.

I think it may have... Rolf said that "-nx" allows insight to run. I
believe the problem was that he has a register window open. Try this...
Run insight with no executable. Open the register window. It'll crash
with an internal error (which may or may not be visible on cygwin...)

Keith


^ permalink raw reply	[flat|nested] 20+ messages in thread

* RE: Insight build problem on cygwin
@ 2003-02-13 21:13 Rolf Campbell
  0 siblings, 0 replies; 20+ messages in thread
From: Rolf Campbell @ 2003-02-13 21:13 UTC (permalink / raw)
  Cc: insight

> -----Original Message-----
> From: Christopher Faylor [mailto:cgf@redhat.com] 
> Sent: Thursday, February 13, 2003 4:08 PM
> To: Keith Seitz
> Cc: Rolf Campbell; insight@sourceware.org
> Subject: Re: Insight build problem on cygwin
> 
> On Thu, Feb 13, 2003 at 09:17:20AM -0800, Keith Seitz wrote:
> >On Thu, 2003-02-13 at 08:39, Rolf Campbell wrote:
> >> "Christopher Faylor" <cgf-insight@sourceware.org> wrote in message 
> >> news:<20030212044611.GC22968@redhat.com>...
> >> No excepts:
> >> 1) run "insight"
> >> 2) Prompt comes back after 0.8 seconds, and rxvt looses focus for 
> >> that time.
> >> 3) No insight windows ever appear, and no insight process 
> is listed 
> >> by ps.
> >
> >There was a change in GDB that caused Insight not to run (type 
> >"insight" and get "insight -nw"/"gdb"). A piecemeal fix has been 
> >committed. We're working on something better.
> 
> Wasn't this supposedly with the cygwin net release binary 
> version of insight?  That wouldn't be affected by this.
> 
> cgf

Yes, this is the cygwin net release binary.  I am having the same
symptoms.  Running "insight -nx" seems to work fine though.

-Rolf

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-13 17:12 ` Keith Seitz
@ 2003-02-13 21:06   ` Christopher Faylor
  2003-02-13 21:57     ` Keith Seitz
  0 siblings, 1 reply; 20+ messages in thread
From: Christopher Faylor @ 2003-02-13 21:06 UTC (permalink / raw)
  To: Keith Seitz; +Cc: Rolf Campbell, insight

On Thu, Feb 13, 2003 at 09:17:20AM -0800, Keith Seitz wrote:
>On Thu, 2003-02-13 at 08:39, Rolf Campbell wrote:
>> "Christopher Faylor" <cgf-insight@sourceware.org> wrote in message
>> news:<20030212044611.GC22968@redhat.com>...
>> No excepts:
>> 1) run "insight"
>> 2) Prompt comes back after 0.8 seconds, and rxvt looses focus for that
>> time.
>> 3) No insight windows ever appear, and no insight process is listed by
>> ps.
>
>There was a change in GDB that caused Insight not to run (type "insight"
>and get "insight -nw"/"gdb"). A piecemeal fix has been committed. We're
>working on something better.

Wasn't this supposedly with the cygwin net release binary version of
insight?  That wouldn't be affected by this.

cgf

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
  2003-02-13 16:39 Rolf Campbell
@ 2003-02-13 17:12 ` Keith Seitz
  2003-02-13 21:06   ` Christopher Faylor
  0 siblings, 1 reply; 20+ messages in thread
From: Keith Seitz @ 2003-02-13 17:12 UTC (permalink / raw)
  To: Rolf Campbell; +Cc: insight

On Thu, 2003-02-13 at 08:39, Rolf Campbell wrote:
> "Christopher Faylor" <cgf-insight@sourceware.org> wrote in message
> news:<20030212044611.GC22968@redhat.com>...
> No excepts:
> 1) run "insight"
> 2) Prompt comes back after 0.8 seconds, and rxvt looses focus for that
> time.
> 3) No insight windows ever appear, and no insight process is listed by
> ps.

There was a change in GDB that caused Insight not to run (type "insight"
and get "insight -nw"/"gdb"). A piecemeal fix has been committed. We're
working on something better.

Perhaps this is the problem I saw where gdb would call an internal
error. Can you start with "insight -nx"? (I checked in a fix for this a
couple of days ago.)

Then again, maybe it is something entirely different. If all else fails,
you should start gdb on insight and figure out why it is exiting. For
giggles, try setting a break on exit (). If that doesn't get run, try
stepping through gdbtk_init.

Keith



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Insight build problem on cygwin
@ 2003-02-13 16:39 Rolf Campbell
  2003-02-13 17:12 ` Keith Seitz
  0 siblings, 1 reply; 20+ messages in thread
From: Rolf Campbell @ 2003-02-13 16:39 UTC (permalink / raw)
  To: insight

[-- Attachment #1: Type: text/plain, Size: 1950 bytes --]

"Christopher Faylor" <cgf-insight@sourceware.org> wrote in message
news:<20030212044611.GC22968@redhat.com>...
> On Tue, Feb 11, 2003 at 04:35:57PM -0500, Rolf Campbell wrote:
> >David Mc Kenna wrote:
> >>Hi all,
> >>
> >>Before my problem just to say thanks to everyone who brought us the 
> >>new
> >>version
> >>of TCL. It makes a huge difference.
> >>
> >>I have managed to compile Insight from the latest CVS archive ( 
> >>Today ) and have come across an unusual problem, it won't launch.
> >>
> >>To be more precise I can launch gdb as arm-elf-gdb or 
> >>arm-elf-insight -nw and I get, as expected, the vanilla version of 
> >>gdb.  But when I type arm-elf-insight or arm-elf-gdb -w the program 
> >>begins to launch but it just dies.  I have seen insight showing up 
> >>in the list of processes running but it just dies?
> >>
> >>Any ideas??
> >
> >I have seen this same behavior with the native version of insight 
> >(2003-01-28-cvs, the one that is currently avaiable on the cygwin 
> >mirrors).
> 
> Right, except that when you run "insight" it brings up a GUI version 
> of gdb that you can use for debugging.  Other than the fact that the 
> program begins to launch, continues, and then works fine, the problem 
> is exactly the same.
> 
> cgf
> 

No excepts:
1) run "insight"
2) Prompt comes back after 0.8 seconds, and rxvt looses focus for that
time.
3) No insight windows ever appear, and no insight process is listed by
ps.

I've attached a cygcheck and strace of it's run.

I couldn't find any documentation on the format of the strace output, so
I've had to guess that:
Column#1 is microseconds for that call
#2 Cumulative microseconds

In that case, there were several calls that took many seconds, like:
13205827 23464519 [main] insight 2048 open: open
(/home/rcampbell/.gdbinit, 0x0)

Opening that file took 13 seconds?

And normalizing my HOME path took 7.5seconds? 

[-- Attachment #2: strace.txt --]
[-- Type: text/plain, Size: 105594 bytes --]

**********************************************
Program name: C:\cygwin\bin\insight.exe (2048)
App version:  1003.15, api: 0.63
DLL version:  1003.20, api: 0.73
DLL build:    2003-02-08 12:10
OS version:   Windows NT-5.0
Heap size:    402653184
Date/Time:    2003-02-12 17:57:52
**********************************************
  969    1962 [main] insight 2048 environ_init: 0x100C04D0: ALLUSERSPROFILE=C:\Documents and Settings\All Users
  526    2488 [main] insight 2048 environ_init: 0x100C0508: APPDATA=C:\Documents and Settings\rcampbell\Application Data
  246    2734 [main] insight 2048 environ_init: 0x100C0550: COLORFGBG=0;default;15
  170    2904 [main] insight 2048 environ_init: 0x100C0008: COLORTERM=rxvt-xpm
  167    3071 [main] insight 2048 environ_init: 0x100C0570: COMMONPROGRAMFILES=C:\Program Files\Common Files
 1944    5015 [main] insight 2048 environ_init: 0x100C05A8: COMPUTERNAME=PCRCAMPBELL2
  192    5207 [main] insight 2048 environ_init: 0x100C05C8: COMSPEC=C:\WINNT\system32\cmd.exe
  864    6071 [main] insight 2048 environ_init: 0x100C05F0: COSMIC=c:/node.beta1/COSMIC
  169    6240 [main] insight 2048 environ_init: 0x100C0610: DISPLAY=:0
  168    6408 [main] insight 2048 getwinenv: can't set native for HOME= since no environ yet
  173    6581 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\home\rcampbell, no-keep-rel, no-add-slash)
  118    6699 [main] insight 2048 normalize_win32_path: C:\cygwin\home\rcampbell = normalize_win32_path (C:\cygwin\home\rcampbell)
   96    6795 [main] insight 2048 mount_info::conv_to_posix_path: /home/rcampbell = conv_to_posix_path (C:\cygwin\home\rcampbell)
  212    7007 [main] insight 2048 win_env::add_cache: posix /home/rcampbell
   75    7082 [main] insight 2048 win_env::add_cache: native HOME=C:\cygwin\home\rcampbell
   81    7163 [main] insight 2048 posify: env var converted to HOME=/home/rcampbell
  139    7302 [main] insight 2048 environ_init: 0x100C0648: HOME=/home/rcampbell
  141    7443 [main] insight 2048 environ_init: 0x100C0798: HOMEDRIVE=C:
  147    7590 [main] insight 2048 environ_init: 0x100C07B0: HOMEPATH=\
  139    7729 [main] insight 2048 environ_init: 0x100C07C0: LOGONSERVER=\\PCRCAMPBELL2
  139    7868 [main] insight 2048 environ_init: 0x100C07E0: MAKE_MODE=unix
  139    8007 [main] insight 2048 environ_init: 0x100C07F8: MANPATH=:/usr/ssl/man
  138    8145 [main] insight 2048 environ_init: 0x100C0818: NUMBER_OF_PROCESSORS=1
  138    8283 [main] insight 2048 environ_init: 0x100C0838: OLDPWD=/usr/bin
  139    8422 [main] insight 2048 environ_init: 0x100C0850: OS2LIBPATH=C:\WINNT\system32\os2\dll;
  150    8572 [main] insight 2048 environ_init: 0x100C0880: OS=Windows_NT
  139    8711 [main] insight 2048 environ_init: 0x100C0898: OSE_ROOT=C:\OSE\OSE4.4.1\
  151    8862 [main] insight 2048 environ_init: 0x100C08B8: P4CONFIG=.p4config
  143    9005 [main] insight 2048 getwinenv: can't set native for PATH= since no environ yet
   88    9093 [main] insight 2048 normalize_posix_path: src .
   94    9187 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\home\rcampbell, no-keep-rel, no-add-slash)
   82    9269 [main] insight 2048 normalize_win32_path: C:\cygwin\home\rcampbell = normalize_win32_path (C:\cygwin\home\rcampbell)
   80    9349 [main] insight 2048 mount_info::conv_to_posix_path: /home/rcampbell = conv_to_posix_path (C:\cygwin\home\rcampbell)
   81    9430 [main] insight 2048 cwdstuff::get: posix /home/rcampbell
   76    9506 [main] insight 2048 cwdstuff::get: (/home/rcampbell) = cwdstuff::get (0x22F988, 260, 1, 0), errno 0
  101    9607 [main] insight 2048 normalize_posix_path: /home/rcampbell = normalize_posix_path (.)
   79    9686 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
   96    9782 [main] insight 2048 set_flags: flags: binary (0x2)
   77    9859 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  392   10251 [main] insight 2048 symlink_info::check: not a symlink
  126   10377 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22F648) (0xA)
   84   10461 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell), set_has_acls(8)
  275   10736 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\local\bin, keep-rel, no-add-slash)
   87   10823 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\local\bin = normalize_win32_path (C:\cygwin\usr\local\bin)
   82   10905 [main] insight 2048 mount_info::conv_to_posix_path: /usr/local/bin = conv_to_posix_path (C:\cygwin\usr\local\bin)
   77   10982 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   76   11058 [main] insight 2048 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   75   11133 [main] insight 2048 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   75   11208 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   74   11282 [main] insight 2048 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   75   11357 [main] insight 2048 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   75   11432 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT\SYSTEM32, keep-rel, no-add-slash)
   74   11506 [main] insight 2048 normalize_win32_path: C:\WINNT\SYSTEM32 = normalize_win32_path (C:\WINNT\SYSTEM32)
   84   11590 [main] insight 2048 mount_info::conv_to_posix_path: /c/WINNT/SYSTEM32 = conv_to_posix_path (C:\WINNT\SYSTEM32)
   76   11666 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT, keep-rel, no-add-slash)
   74   11740 [main] insight 2048 normalize_win32_path: C:\WINNT = normalize_win32_path (C:\WINNT)
   76   11816 [main] insight 2048 mount_info::conv_to_posix_path: /c/WINNT = conv_to_posix_path (C:\WINNT)
   75   11891 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT\SYSTEM32\WBEM, keep-rel, no-add-slash)
   75   11966 [main] insight 2048 normalize_win32_path: C:\WINNT\SYSTEM32\WBEM = normalize_win32_path (C:\WINNT\SYSTEM32\WBEM)
   76   12042 [main] insight 2048 mount_info::conv_to_posix_path: /c/WINNT/SYSTEM32/WBEM = conv_to_posix_path (C:\WINNT\SYSTEM32\WBEM)
   77   12119 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\PERFORCE, keep-rel, no-add-slash)
   75   12194 [main] insight 2048 normalize_win32_path: C:\PERFORCE = normalize_win32_path (C:\PERFORCE)
   74   12268 [main] insight 2048 mount_info::conv_to_posix_path: /c/PERFORCE = conv_to_posix_path (C:\PERFORCE)
   76   12344 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   75   12419 [main] insight 2048 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   75   12494 [main] insight 2048 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   75   12569 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT\system32, keep-rel, no-add-slash)
   82   12651 [main] insight 2048 normalize_win32_path: C:\WINNT\system32 = normalize_win32_path (C:\WINNT\system32)
   76   12727 [main] insight 2048 mount_info::conv_to_posix_path: /c/WINNT/system32 = conv_to_posix_path (C:\WINNT\system32)
   76   12803 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT, keep-rel, no-add-slash)
   74   12877 [main] insight 2048 normalize_win32_path: C:\WINNT = normalize_win32_path (C:\WINNT)
   75   12952 [main] insight 2048 mount_info::conv_to_posix_path: /c/WINNT = conv_to_posix_path (C:\WINNT)
   76   13028 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\WINNT\System32\Wbem, keep-rel, no-add-slash)
   75   13103 [main] insight 2048 normalize_win32_path: C:\WINNT\System32\Wbem = normalize_win32_path (C:\WINNT\System32\Wbem)
   89   13192 [main] insight 2048 mount_info::conv_to_posix_path: /c/WINNT/System32/Wbem = conv_to_posix_path (C:\WINNT\System32\Wbem)
   78   13270 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\Perforce, keep-rel, no-add-slash)
   74   13344 [main] insight 2048 normalize_win32_path: C:\Perforce = normalize_win32_path (C:\Perforce)
   75   13419 [main] insight 2048 mount_info::conv_to_posix_path: /c/Perforce = conv_to_posix_path (C:\Perforce)
   76   13495 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\local\bin, keep-rel, no-add-slash)
   76   13571 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\local\bin = normalize_win32_path (C:\cygwin\usr\local\bin)
  174   13745 [main] insight 2048 mount_info::conv_to_posix_path: /usr/local/bin = conv_to_posix_path (C:\cygwin\usr\local\bin)
   78   13823 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
  566   14389 [main] insight 2048 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
  110   14499 [main] insight 2048 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   90   14589 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\Program Files\SSH, keep-rel, no-add-slash)
   80   14669 [main] insight 2048 normalize_win32_path: C:\Program Files\SSH = normalize_win32_path (C:\Program Files\SSH)
   81   14750 [main] insight 2048 mount_info::conv_to_posix_path: /c/Program Files/SSH = conv_to_posix_path (C:\Program Files\SSH)
  223   14973 [main] insight 2048 win_env::add_cache: posix /usr/local/bin:/usr/bin:/usr/bin:/c/WINNT/SYSTEM32:/c/WINNT:/c/WINNT/SYSTEM32/WBEM:/c/PERFORCE:/usr/bin:/c/WINNT/system32:/c/WINNT:/c/WINNT/System32/Wbem:/c/Perforce:/usr/local/bin:/usr/bin:/c/Program Files/SSH
   81   15054 [main] insight 2048 win_env::add_cache: native PATH=C:\cygwin\usr\local\bin;C:\cygwin\bin;C:\cygwin\bin;C:\WINNT\SYSTEM32;C:\WINNT;C:\WINNT\SYSTEM32\WBEM;C:\PERFORCE;C:\cygwin\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Perforce;C:\cygwin\usr\local\bin;C:\cygwin\bin;C:\Program Files\SSH
   84   15138 [main] insight 2048 posify: env var converted to PATH=/usr/local/bin:/usr/bin:/usr/bin:/c/WINNT/SYSTEM32:/c/WINNT:/c/WINNT/SYSTEM32/WBEM:/c/PERFORCE:/usr/bin:/c/WINNT/system32:/c/WINNT:/c/WINNT/System32/Wbem:/c/Perforce:/usr/local/bin:/usr/bin:/c/Program Files/SSH
  147   15285 [main] insight 2048 environ_init: 0x100C09D8: PATH=/usr/local/bin:/usr/bin:/usr/bin:/c/WINNT/SYSTEM32:/c/WINNT:/c/WINNT/SYSTEM32/WBEM:/c/PERFORCE:/usr/bin:/c/WINNT/system32:/c/WINNT:/c/WINNT/System32/Wbem:/c/Perforce:/usr/local/bin:/usr/bin:/c/Program Files/SSH
  154   15439 [main] insight 2048 environ_init: 0x100C08D0: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyc;.pyo;.pyw;.pys
  143   15582 [main] insight 2048 environ_init: 0x100C0928: PROCESSOR_ARCHITECTURE=x86
  494   16076 [main] insight 2048 environ_init: 0x100C0948: PROCESSOR_IDENTIFIER=x86 Family 6 Model 8 Stepping 6, GenuineIntel
  142   16218 [main] insight 2048 environ_init: 0x100C0990: PROCESSOR_LEVEL=6
  143   16361 [main] insight 2048 environ_init: 0x100C0620: PROCESSOR_REVISION=0806
  139   16500 [main] insight 2048 environ_init: 0x100C09A8: PROGRAMFILES=C:\Program Files
  146   16646 [main] insight 2048 environ_init: 0x100C0F28: PS1=\[^[[02;34m\]$PWD\[^[[02;33m\]>\[^[[0m\] 
  141   16787 [main] insight 2048 environ_init: 0x100C0F58: PWD=/home/rcampbell
  136   16923 [main] insight 2048 environ_init: 0x100C0F70: SHLVL=1
  136   17059 [main] insight 2048 environ_init: 0x100C0F80: SYSTEMDRIVE=C:
  138   17197 [main] insight 2048 environ_init: 0x100C0F98: SYSTEMROOT=C:\WINNT
  139   17336 [main] insight 2048 getwinenv: can't set native for TEMP= since no environ yet
  502   17838 [main] insight 2048 mount_info::conv_to_posix_path: conv_to_posix_path (C:\Temp, no-keep-rel, no-add-slash)
   98   17936 [main] insight 2048 normalize_win32_path: C:\Temp = normalize_win32_path (C:\Temp)
  106   18042 [main] insight 2048 mount_info::conv_to_posix_path: /c/Temp = conv_to_posix_path (C:\Temp)
  216   18258 [main] insight 2048 win_env::add_cache: posix /c/Temp
   72   18330 [main] insight 2048 win_env::add_cache: native TEMP=C:\Temp
   73   18403 [main] insight 2048 posify: env var converted to TEMP=/c/Temp
  137   18540 [main] insight 2048 environ_init: 0x100C0FC8: TEMP=/c/Temp
  149   18689 [main] insight 2048 environ_init: 0x100C1100: TERM=xterm
  138   18827 [main] insight 2048 environ_init: 0x100C0FB0: USER=rcampbell
  138   18965 [main] insight 2048 environ_init: 0x100C1110: USERDNSDOMAIN=tropicnetworks.com
  137   19102 [main] insight 2048 environ_init: 0x100C1138: USERDOMAIN=TROPICNETWORKS
  137   19239 [main] insight 2048 environ_init: 0x100C1158: USERNAME=rcampbell
  138   19377 [main] insight 2048 environ_init: 0x100C1170: USERPROFILE=C:\Documents and Settings\rcampbell
  137   19514 [main] insight 2048 environ_init: 0x100C11A8: USE_GCC3_FOR_DEPENDANCIES=yes
  143   19657 [main] insight 2048 environ_init: 0x100C11D0: WINDIR=C:\WINNT
  136   19793 [main] insight 2048 environ_init: 0x100C11E8: WINDOWID=168046040
  136   19929 [main] insight 2048 environ_init: 0x100C1200: _=/usr/bin/strace
  109   20038 [main] insight 2048 pinfo_init: pid 2048, pgid 2048
  163   20201 [main] insight 2048 dtable::extend: size 32, fds 0x615E03DC
  168   20369 [main] insight 2048 normalize_posix_path: src /etc/passwd
   87   20456 [main] insight 2048 normalize_posix_path: /etc/passwd = normalize_posix_path (/etc/passwd)
   78   20534 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/etc/passwd)
  224   20758 [main] insight 2048 set_flags: flags: binary (0x2)
   85   20843 [main] insight 2048 mount_info::conv_to_win32_path: src_path /etc/passwd, dst C:\cygwin\etc\passwd, flags 0xA, rc 0
  340   21183 [main] insight 2048 symlink_info::check: not a symlink
   99   21282 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\etc\passwd, 0x22F7F8) (0xA)
   81   21363 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\etc\passwd), set_has_acls(8)
  219   21582 [main] insight 2048 etc::test_file_change: FindFirstFile succeeded
  131   21713 [main] insight 2048 etc::test_file_change: fn[1] C:\cygwin\etc\passwd res 1
   78   21791 [main] insight 2048 etc::init: fn[1] C:\cygwin\etc\passwd, curr_ix 1
   78   21869 [main] insight 2048 pwdgrp::load: /etc/passwd
  394   22263 [main] insight 2048 pwdgrp::load: /etc/passwd curr_lines 1
   79   22342 [main] insight 2048 pwdgrp::load: /etc/passwd load succeeded
  152   22494 [main] insight 2048 normalize_posix_path: src /etc/group
   81   22575 [main] insight 2048 normalize_posix_path: /etc/group = normalize_posix_path (/etc/group)
   85   22660 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/etc/group)
   86   22746 [main] insight 2048 set_flags: flags: binary (0x2)
   73   22819 [main] insight 2048 mount_info::conv_to_win32_path: src_path /etc/group, dst C:\cygwin\etc\group, flags 0xA, rc 0
  280   23099 [main] insight 2048 symlink_info::check: not a symlink
   95   23194 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\etc\group, 0x22F7C8) (0xA)
   79   23273 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\etc\group), set_has_acls(8)
  196   23469 [main] insight 2048 etc::test_file_change: FindFirstFile succeeded
   92   23561 [main] insight 2048 etc::test_file_change: fn[2] C:\cygwin\etc\group res 1
  165   23726 [main] insight 2048 etc::init: fn[2] C:\cygwin\etc\group, curr_ix 2
   88   23814 [main] insight 2048 pwdgrp::load: /etc/group
  389   24203 [main] insight 2048 pwdgrp::load: /etc/group curr_lines 9
   82   24285 [main] insight 2048 pwdgrp::load: /etc/group load succeeded
  111   24396 [main] insight 2048 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (0)
   80   24476 [main] insight 2048 _cygwin_istext_for_stdio:  _cifs: fd not open
   76   24552 [main] insight 2048 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (1)
  105   24657 [main] insight 2048 _cygwin_istext_for_stdio:  _cifs: fd not open
   75   24732 [main] insight 2048 _cygwin_istext_for_stdio: _cygwin_istext_for_stdio (2)
   74   24806 [main] insight 2048 _cygwin_istext_for_stdio:  _cifs: fd not open
   98   24904 [main] insight 2048 pwdgrp::read_group: Completing /etc/group: mkgroup:S-1-5-21-1044451790-1003425150-1231754661-513:10513:rcampbell
  237   25141 [main] insight 2048 cygheap_user::ontherange: what 2, pw 0x100C12C0
   83   25224 [main] insight 2048 cygheap_user::ontherange: HOME is already in the environment /home/rcampbell
  323   25547 [main] insight 2048 sigproc_init: process/signal handling enabled(1)
  246   25793 [main] insight 2048 build_argv: argv[0] = 'insight'
   74   25867 [main] insight 2048 build_argv: argc 1
  552   26419 [sig] insight 2048 wait_sig: sigcatch_nonmain 0x140, sigcatch_main 0x16C
  126   26545 [sig] insight 2048 wait_sig: Ready.  dwProcessid 2048
  594   27139 [main] insight 2048 normalize_posix_path: src /dev/piper
  125   27264 [main] insight 2048 normalize_posix_path: /dev/piper = normalize_posix_path (/dev/piper)
   89   27353 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/dev/piper)
   95   27448 [main] insight 2048 mount_info::conv_to_win32_path: src_path /dev/piper, dst \dev\piper, flags 0x2, rc 0
  605   28053 [main] insight 2048 dtable::build_fhandler: fd 0, fh 0x615E05CC
  166   28219 [main] insight 2048 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   86   28305 [main] insight 2048 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   84   28389 [main] insight 2048 fhandler_base::set_flags: filemode set to binary
   85   28474 [main] insight 2048 fhandler_base::init: created new fhandler_base for handle 0x14C, bin 1
   87   28561 [main] insight 2048 dtable::init_std_file_from_handle: fd 0, handle 0x14C
  136   28697 [main] insight 2048 normalize_posix_path: src /dev/pipew
   89   28786 [main] insight 2048 normalize_posix_path: /dev/pipew = normalize_posix_path (/dev/pipew)
   84   28870 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/dev/pipew)
   90   28960 [main] insight 2048 mount_info::conv_to_win32_path: src_path /dev/pipew, dst \dev\pipew, flags 0x2, rc 0
   92   29052 [main] insight 2048 dtable::build_fhandler: fd 1, fh 0x615E06A4
   85   29137 [main] insight 2048 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   82   29219 [main] insight 2048 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   82   29301 [main] insight 2048 fhandler_base::set_flags: filemode set to binary
   82   29383 [main] insight 2048 fhandler_base::init: created new fhandler_base for handle 0xE4, bin 1
   83   29466 [main] insight 2048 dtable::init_std_file_from_handle: fd 1, handle 0xE4
  106   29572 [main] insight 2048 normalize_posix_path: src /dev/pipew
  239   29811 [main] insight 2048 normalize_posix_path: /dev/pipew = normalize_posix_path (/dev/pipew)
  100   29911 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/dev/pipew)
   88   29999 [main] insight 2048 mount_info::conv_to_win32_path: src_path /dev/pipew, dst \dev\pipew, flags 0x2, rc 0
   93   30092 [main] insight 2048 dtable::build_fhandler: fd 2, fh 0x615E077C
   88   30180 [main] insight 2048 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   83   30263 [main] insight 2048 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   83   30346 [main] insight 2048 fhandler_base::set_flags: filemode set to binary
   82   30428 [main] insight 2048 fhandler_base::init: created new fhandler_base for handle 0x160, bin 1
   83   30511 [main] insight 2048 dtable::init_std_file_from_handle: fd 2, handle 0x160
  207   30718 [main] insight 2048 open_shared: name (null), shared 0xA020000 (wanted 0xA020000), h 0x170
  122   30840 [main] insight 2048 tty_min::set_ctty: attached tty1073741824 sid 2048, pid 2048, tty->pgid 0, tty->sid 2048
  178   31018 [main] insight 2048 tty_min::set_ctty: resetting tty1073741824 sid.  Was 2048, now 2048.  pgid was 0, now 2048.
  683   31701 [main] insight 2048 dll_crt0_1: user_data->main 0x401090
  251   31952 [main] insight 2048 __to_clock_t: dwHighDateTime 0, dwLowDateTime 200288
  105   32057 [main] insight 2048 __to_clock_t: total 00000000 00000014
   86   32143 [main] insight 2048 __to_clock_t: dwHighDateTime 0, dwLowDateTime 200288
   84   32227 [main] insight 2048 __to_clock_t: total 00000000 00000014
 1092   33319 [main] insight 2048 getrusage: 0 = getrusage (0, 0x22FBA0)
  816   34135 [main] insight 2048 cwdstuff::get: posix /home/rcampbell
   90   34225 [main] insight 2048 cwdstuff::get: (/home/rcampbell) = cwdstuff::get (0x63A5E0, 1024, 1, 1), errno 0
 3098   37323 [main] insight 2048 cwdstuff::get: posix /home/rcampbell
  120   37443 [main] insight 2048 cwdstuff::get: (/home/rcampbell) = cwdstuff::get (0x63A5E0, 1024, 1, 1), errno 0
 1832   39275 [main] insight 2048 open: open (/home/rcampbell/.termcap, 0x0)
  108   39383 [main] insight 2048 normalize_posix_path: src /home/rcampbell/.termcap
   87   39470 [main] insight 2048 normalize_posix_path: /home/rcampbell/.termcap = normalize_posix_path (/home/rcampbell/.termcap)
   87   39557 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/.termcap)
   99   39656 [main] insight 2048 set_flags: flags: binary (0x2)
   89   39745 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/.termcap, dst C:\cygwin\home\rcampbell\.termcap, flags 0xA, rc 0
  469   40214 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.termcap) failed
  122   40336 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  142   40478 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.termcap.lnk) failed
   94   40572 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
   84   40656 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\.termcap, 0x22E360) (0xA)
  115   40771 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
   95   40866 [main] insight 2048 set_flags: flags: binary (0x2)
  347   41213 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  198   41411 [main] insight 2048 symlink_info::check: not a symlink
   93   41504 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22E360) (0xA)
   92   41596 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\.termcap), set_has_acls(8)
  131   41727 [main] insight 2048 dtable::build_fhandler: fd 3, fh 0x615E089C
  108   41835 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.termcap, 0x100000) query_open 0
  279   42114 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.termcap, 0x80000000, 0x7, 0x22E7A0, 0x3, 0x2000081, 0)
  114   42228 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
   87   42315 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
   83   42398 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.termcap, 0x100000)
   86   42484 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.termcap, 0x0)
   92   42576 [main] insight 2048 open: -1 = open (/home/rcampbell/.termcap, 0x0)
  112   42688 [main] insight 2048 open: open (/etc/termcap, 0x0)
   89   42777 [main] insight 2048 normalize_posix_path: src /etc/termcap
   84   42861 [main] insight 2048 normalize_posix_path: /etc/termcap = normalize_posix_path (/etc/termcap)
   84   42945 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/etc/termcap)
   95   43040 [main] insight 2048 set_flags: flags: binary (0x2)
   82   43122 [main] insight 2048 mount_info::conv_to_win32_path: src_path /etc/termcap, dst C:\cygwin\etc\termcap, flags 0xA, rc 0
  370   43492 [main] insight 2048 symlink_info::check: not a symlink
  114   43606 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\etc\termcap, 0x22E360) (0xA)
  185   43791 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\etc\termcap), set_has_acls(8)
  102   43893 [main] insight 2048 dtable::build_fhandler: fd 3, fh 0x615E089C
   89   43982 [main] insight 2048 fhandler_base::open: (C:\cygwin\etc\termcap, 0x100000) query_open 0
  161   44143 [main] insight 2048 fhandler_base::open: 0x174 = CreateFile (C:\cygwin\etc\termcap, 0x80000000, 0x7, 0x22E7A0, 0x3, 0x2000081, 0)
  100   44243 [main] insight 2048 fhandler_base::set_flags: flags 0x100000, supplied_bin 0x10000
   84   44327 [main] insight 2048 fhandler_base::set_flags: filemode set to binary
   83   44410 [main] insight 2048 fhandler_base::open: 1 = fhandler_base::open (C:\cygwin\etc\termcap, 0x100000)
  660   45070 [main] insight 2048 fhandler_disk_file::open: 1 = fhandler_disk_file::open (C:\cygwin\etc\termcap, 0x0)
  127   45197 [main] insight 2048 open: 3 = open (/etc/termcap, 0x0)
  122   45319 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   92   45411 [main] insight 2048 readv: no need to call ready_for_read
  189   45600 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
  139   45739 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
  110   45849 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   85   45934 [main] insight 2048 readv: no need to call ready_for_read
   94   46028 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   84   46112 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   98   46210 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   84   46294 [main] insight 2048 readv: no need to call ready_for_read
   87   46381 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   82   46463 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   99   46562 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   83   46645 [main] insight 2048 readv: no need to call ready_for_read
   95   46740 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   84   46824 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   99   46923 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   84   47007 [main] insight 2048 readv: no need to call ready_for_read
   90   47097 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   83   47180 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   98   47278 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   83   47361 [main] insight 2048 readv: no need to call ready_for_read
   88   47449 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   82   47531 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   97   47628 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
  476   48104 [main] insight 2048 readv: no need to call ready_for_read
  133   48237 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   86   48323 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
  105   48428 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   86   48514 [main] insight 2048 readv: no need to call ready_for_read
   90   48604 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   84   48688 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
  107   48795 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   82   48877 [main] insight 2048 readv: no need to call ready_for_read
   93   48970 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
  106   49076 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   98   49174 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   83   49257 [main] insight 2048 readv: no need to call ready_for_read
   88   49345 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   83   49428 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
  175   49603 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   83   49686 [main] insight 2048 readv: no need to call ready_for_read
  260   49946 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   85   50031 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
  103   50134 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   84   50218 [main] insight 2048 readv: no need to call ready_for_read
   88   50306 [main] insight 2048 fhandler_base::read: returning 1024, binary mode
   82   50388 [main] insight 2048 readv: 1024 = readv (3, 0x22EBA0, 1), errno 2
   97   50485 [main] insight 2048 readv: readv (3, 0x22EBA0, 1) blocking, sigcatchers 0
   81   50566 [main] insight 2048 readv: no need to call ready_for_read
   89   50655 [main] insight 2048 fhandler_base::read: returning 258, binary mode
  106   50761 [main] insight 2048 readv: 258 = readv (3, 0x22EBA0, 1), errno 2
  107   50868 [main] insight 2048 close: close (3)
   84   50952 [main] insight 2048 fhandler_base::close: closing '/etc/termcap' handle 0x174
  132   51084 [main] insight 2048 close: 0 = close (3)
  428   51512 [main] insight 2048 tcgetattr: -1 = tcgetattr (2, 0x22F1C8)
   88   51600 [main] insight 2048 tcgetattr: -1 = tcgetattr (1, 0x22F1C8)
  193   51793 [main] insight 2048 isatty: 0 = isatty (1)
  263   52056 [main] insight 2048 isatty: 0 = isatty (1)
55900  107956 [main] insight 2048 isatty: 0 = isatty (0)
  153  108109 [main] insight 2048 cygwin_select: 1, 0x22FAE8, 0x22FAD8, 0x22FAC8, 0x22FB38
  174  108283 [main] insight 2048 dtable::select_read: /dev/piper fd 0
   82  108365 [main] insight 2048 cygwin_select: to->tv_sec 0, to->tv_usec 0, ms 0
   84  108449 [main] insight 2048 cygwin_select: sel.always_ready 0
   81  108530 [main] insight 2048 select_stuff::cleanup: calling cleanup routines
  137  108667 [main] insight 2048 select_stuff::poll: returning 0
   87  108754 [main] insight 2048 select_stuff::cleanup: calling cleanup routines
   81  108835 [main] insight 2048 select_stuff::~select_stuff: deleting select records
 5672  114507 [main] insight 2048 normalize_posix_path: src /home/rcampbell/gdb.ini
  111  114618 [main] insight 2048 normalize_posix_path: /home/rcampbell/gdb.ini = normalize_posix_path (/home/rcampbell/gdb.ini)
   86  114704 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/gdb.ini)
   97  114801 [main] insight 2048 set_flags: flags: binary (0x2)
   82  114883 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/gdb.ini, dst C:\cygwin\home\rcampbell\gdb.ini, flags 0xA, rc 0
  458  115341 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\gdb.ini) failed
  125  115466 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  141  115607 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\gdb.ini.exe) failed
   95  115702 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  139  115841 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\gdb.ini.exe.lnk) failed
  105  115946 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  137  116083 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\gdb.ini.lnk) failed
   91  116174 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
   83  116257 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\gdb.ini, 0x22E630) (0xA)
   87  116344 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
  117  116461 [main] insight 2048 set_flags: flags: binary (0x2)
   84  116545 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  143  116688 [main] insight 2048 symlink_info::check: not a symlink
   89  116777 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22E630) (0xA)
   87  116864 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\gdb.ini), set_has_acls(8)
  154  117018 [main] insight 2048 read_sd: file = C:\cygwin\home\rcampbell\gdb.ini
  207  117225 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/security.cc:1121 windows error 2
  105  117330 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
   84  117414 [main] insight 2048 getacl: read_sd Win32 error 2
79141  196555 [main] insight 2048 void: 0x0 = signal (2, 0x49C820)
 1271  197826 [main] insight 2048 void: 0x0 = signal (5, 0x0)
  125  197951 [main] insight 2048 void: 0x0 = signal (3, 0x49C880)
  169  198120 [main] insight 2048 void: 0x0 = signal (1, 0x49C8C0)
10900  209020 [main] insight 2048 void: 0x0 = signal (8, 0x49CA60)
144239  353259 [main] insight 2048 open: open (/usr/local/etc/zoneinfo/posixrules, 0x10000)
  167  353426 [main] insight 2048 normalize_posix_path: src /usr/local/etc/zoneinfo/posixrules
   89  353515 [main] insight 2048 normalize_posix_path: /usr/local/etc/zoneinfo/posixrules = normalize_posix_path (/usr/local/etc/zoneinfo/posixrules)
   88  353603 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/usr/local/etc/zoneinfo/posixrules)
  280  353883 [main] insight 2048 set_flags: flags: binary (0x2)
  102  353985 [main] insight 2048 mount_info::conv_to_win32_path: src_path /usr/local/etc/zoneinfo/posixrules, dst C:\cygwin\usr\local\etc\zoneinfo\posixrules, flags 0xA, rc 0
  470  354455 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\usr\local\etc\zoneinfo\posixrules) failed
  134  354589 [main] insight 2048 geterrno_from_win_error: windows error 3 == errno 2
  283  354872 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\usr\local\etc\zoneinfo\posixrules.lnk) failed
  117  354989 [main] insight 2048 geterrno_from_win_error: windows error 3 == errno 2
   86  355075 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\local\etc\zoneinfo\posixrules, 0x22B790) (0xA)
   89  355164 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/usr/local/etc/zoneinfo)
   96  355260 [main] insight 2048 set_flags: flags: binary (0x2)
   83  355343 [main] insight 2048 mount_info::conv_to_win32_path: src_path /usr/local/etc/zoneinfo, dst C:\cygwin\usr\local\etc\zoneinfo, flags 0xA, rc 0
  176  355519 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\usr\local\etc\zoneinfo) failed
  102  355621 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  168  355789 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\usr\local\etc\zoneinfo.lnk) failed
   97  355886 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
   84  355970 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\local\etc\zoneinfo, 0x22B790) (0xA)
   86  356056 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/usr/local/etc)
   90  356146 [main] insight 2048 set_flags: flags: binary (0x2)
   84  356230 [main] insight 2048 mount_info::conv_to_win32_path: src_path /usr/local/etc, dst C:\cygwin\usr\local\etc, flags 0xA, rc 0
  202  356432 [main] insight 2048 symlink_info::check: not a symlink
  101  356533 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\local\etc, 0x22B790) (0xA)
   91  356624 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\local\etc\zoneinfo\posixrules), set_has_acls(8)
  107  356731 [main] insight 2048 dtable::build_fhandler: fd 3, fh 0x615E089C
  116  356847 [main] insight 2048 fhandler_base::open: (C:\cygwin\usr\local\etc\zoneinfo\posixrules, 0x110000) query_open 0
  184  357031 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\usr\local\etc\zoneinfo\posixrules, 0x80000000, 0x7, 0x22BBD0, 0x3, 0x2000081, 0)
  106  357137 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 3
   85  357222 [main] insight 2048 geterrno_from_win_error: windows error 3 == errno 2
   85  357307 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\usr\local\etc\zoneinfo\posixrules, 0x110000)
   85  357392 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\usr\local\etc\zoneinfo\posixrules, 0x10000)
   90  357482 [main] insight 2048 open: -1 = open (/usr/local/etc/zoneinfo/posixrules, 0x10000)
497559  855041 [main] insight 2048 normalize_posix_path: src /home/rcampbell/.Xdefaults
  122  855163 [main] insight 2048 normalize_posix_path: /home/rcampbell/.Xdefaults = normalize_posix_path (/home/rcampbell/.Xdefaults)
   93  855256 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/.Xdefaults)
  106  855362 [main] insight 2048 set_flags: flags: binary (0x2)
   87  855449 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/.Xdefaults, dst C:\cygwin\home\rcampbell\.Xdefaults, flags 0xA, rc 0
  450  855899 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.Xdefaults) failed
  125  856024 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  146  856170 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.Xdefaults.lnk) failed
  106  856276 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
   87  856363 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\.Xdefaults, 0x22EC20) (0xA)
   91  856454 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
   94  856548 [main] insight 2048 set_flags: flags: binary (0x2)
   84  856632 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  143  856775 [main] insight 2048 symlink_info::check: not a symlink
   92  856867 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22EC20) (0xA)
   89  856956 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\.Xdefaults), set_has_acls(8)
1256525 2113481 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/redhat/gui/
  132 2113613 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\redhat\gui\ = normalize_win32_path (C:/cygwin/usr/share/redhat/gui/)
  100 2113713 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/redhat/gui/)
   95 2113808 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/redhat/gui/ already win32
   92 2113900 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\redhat\gui\ = normalize_win32_path (C:/cygwin/usr/share/redhat/gui/)
   97 2113997 [main] insight 2048 set_flags: flags: binary (0x2)
  101 2114098 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/redhat/gui/, dst C:\cygwin\usr\share\redhat\gui\, flags 0xA, rc 0
  441 2114539 [main] insight 2048 symlink_info::check: not a symlink
  128 2114667 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\redhat\gui\, 0x22B4A0) (0xA)
   99 2114766 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\redhat\gui\), set_has_acls(8)
41025 2155791 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/
  143 2155934 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\ = normalize_win32_path (C:/cygwin/lib/)
   98 2156032 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/)
  107 2156139 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/ already win32
   91 2156230 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\ = normalize_win32_path (C:/cygwin/lib/)
   93 2156323 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2156410 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/, dst C:\cygwin\lib\, flags 0xA, rc 0
  423 2156833 [main] insight 2048 symlink_info::check: not a symlink
  121 2156954 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\, 0x22B4A0) (0xA)
   96 2157050 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\), set_has_acls(8)
29182 2186232 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/dde1.2/
  134 2186366 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\dde1.2\ = normalize_win32_path (C:/cygwin/lib/dde1.2/)
   97 2186463 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/dde1.2/)
 1458 2187921 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/dde1.2/ already win32
  222 2188143 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\dde1.2\ = normalize_win32_path (C:/cygwin/lib/dde1.2/)
  107 2188250 [main] insight 2048 set_flags: flags: binary (0x2)
   95 2188345 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/dde1.2/, dst C:\cygwin\lib\dde1.2\, flags 0xA, rc 0
  480 2188825 [main] insight 2048 symlink_info::check: not a symlink
  147 2188972 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\dde1.2\, 0x22B240) (0xA)
  116 2189088 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\dde1.2\), set_has_acls(8)
 5903 2194991 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/gcc-lib/
  115 2195106 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\gcc-lib\ = normalize_win32_path (C:/cygwin/lib/gcc-lib/)
   95 2195201 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/gcc-lib/)
  106 2195307 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/gcc-lib/ already win32
   90 2195397 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\gcc-lib\ = normalize_win32_path (C:/cygwin/lib/gcc-lib/)
   94 2195491 [main] insight 2048 set_flags: flags: binary (0x2)
  176 2195667 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/gcc-lib/, dst C:\cygwin\lib\gcc-lib\, flags 0xA, rc 0
  352 2196019 [main] insight 2048 symlink_info::check: not a symlink
  116 2196135 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\gcc-lib\, 0x22B240) (0xA)
  110 2196245 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\gcc-lib\), set_has_acls(8)
 7036 2203281 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/groff/
  117 2203398 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\groff\ = normalize_win32_path (C:/cygwin/lib/groff/)
   94 2203492 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/groff/)
  101 2203593 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/groff/ already win32
  179 2203772 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\groff\ = normalize_win32_path (C:/cygwin/lib/groff/)
  101 2203873 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2203961 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/groff/, dst C:\cygwin\lib\groff\, flags 0xA, rc 0
  351 2204312 [main] insight 2048 symlink_info::check: not a symlink
  116 2204428 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\groff\, 0x22B240) (0xA)
   96 2204524 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\groff\), set_has_acls(8)
 7054 2211578 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/insight1.0/
  128 2211706 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\insight1.0\ = normalize_win32_path (C:/cygwin/lib/insight1.0/)
  119 2211825 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/insight1.0/)
   93 2211918 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/insight1.0/ already win32
   90 2212008 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\insight1.0\ = normalize_win32_path (C:/cygwin/lib/insight1.0/)
   95 2212103 [main] insight 2048 set_flags: flags: binary (0x2)
  100 2212203 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/insight1.0/, dst C:\cygwin\lib\insight1.0\, flags 0xA, rc 0
  351 2212554 [main] insight 2048 symlink_info::check: not a symlink
  126 2212680 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\insight1.0\, 0x22B240) (0xA)
   97 2212777 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\insight1.0\), set_has_acls(8)
 7131 2219908 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/itcl3.2/
  130 2220038 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\itcl3.2\ = normalize_win32_path (C:/cygwin/lib/itcl3.2/)
   94 2220132 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/itcl3.2/)
   91 2220223 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/itcl3.2/ already win32
   89 2220312 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\itcl3.2\ = normalize_win32_path (C:/cygwin/lib/itcl3.2/)
   94 2220406 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2220493 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/itcl3.2/, dst C:\cygwin\lib\itcl3.2\, flags 0xA, rc 0
  373 2220866 [main] insight 2048 symlink_info::check: not a symlink
  117 2220983 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\itcl3.2\, 0x22B240) (0xA)
   97 2221080 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\itcl3.2\), set_has_acls(8)
16259 2237339 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/itk3.2/
  124 2237463 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\itk3.2\ = normalize_win32_path (C:/cygwin/lib/itk3.2/)
   99 2237562 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/itk3.2/)
  379 2237941 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/itk3.2/ already win32
  125 2238066 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\itk3.2\ = normalize_win32_path (C:/cygwin/lib/itk3.2/)
   97 2238163 [main] insight 2048 set_flags: flags: binary (0x2)
   91 2238254 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/itk3.2/, dst C:\cygwin\lib\itk3.2\, flags 0xA, rc 0
  396 2238650 [main] insight 2048 symlink_info::check: not a symlink
  189 2238839 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\itk3.2\, 0x22B240) (0xA)
  222 2239061 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\itk3.2\), set_has_acls(8)
 5451 2244512 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/ldscripts/
  118 2244630 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\ldscripts\ = normalize_win32_path (C:/cygwin/lib/ldscripts/)
  106 2244736 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/ldscripts/)
  276 2245012 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/ldscripts/ already win32
  104 2245116 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\ldscripts\ = normalize_win32_path (C:/cygwin/lib/ldscripts/)
   96 2245212 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2245300 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/ldscripts/, dst C:\cygwin\lib\ldscripts\, flags 0xA, rc 0
  364 2245664 [main] insight 2048 symlink_info::check: not a symlink
  743 2246407 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\ldscripts\, 0x22B240) (0xA)
  179 2246586 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\ldscripts\), set_has_acls(8)
 6783 2253369 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/mingw/
  115 2253484 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\mingw\ = normalize_win32_path (C:/cygwin/lib/mingw/)
   93 2253577 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/mingw/)
   95 2253672 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/mingw/ already win32
  132 2253804 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\mingw\ = normalize_win32_path (C:/cygwin/lib/mingw/)
   94 2253898 [main] insight 2048 set_flags: flags: binary (0x2)
   89 2253987 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/mingw/, dst C:\cygwin\lib\mingw\, flags 0xA, rc 0
  349 2254336 [main] insight 2048 symlink_info::check: not a symlink
  115 2254451 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\mingw\, 0x22B240) (0xA)
   97 2254548 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\mingw\), set_has_acls(8)
 8750 2263298 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/noX/
  122 2263420 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\noX\ = normalize_win32_path (C:/cygwin/lib/noX/)
   94 2263514 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/noX/)
   94 2263608 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/noX/ already win32
   89 2263697 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\noX\ = normalize_win32_path (C:/cygwin/lib/noX/)
  102 2263799 [main] insight 2048 set_flags: flags: binary (0x2)
  100 2263899 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/noX/, dst C:\cygwin\lib\noX\, flags 0xA, rc 0
  366 2264265 [main] insight 2048 symlink_info::check: not a symlink
  118 2264383 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\noX\, 0x22B240) (0xA)
   97 2264480 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\noX\), set_has_acls(8)
 6443 2270923 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/perl5/
  112 2271035 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\perl5\ = normalize_win32_path (C:/cygwin/lib/perl5/)
  108 2271143 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/perl5/)
   90 2271233 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/perl5/ already win32
   90 2271323 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\perl5\ = normalize_win32_path (C:/cygwin/lib/perl5/)
   95 2271418 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2271506 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/perl5/, dst C:\cygwin\lib\perl5\, flags 0xA, rc 0
  637 2272143 [main] insight 2048 symlink_info::check: not a symlink
  179 2272322 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\perl5\, 0x22B240) (0xA)
  100 2272422 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\perl5\), set_has_acls(8)
 7501 2279923 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/python2.2/
  121 2280044 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\python2.2\ = normalize_win32_path (C:/cygwin/lib/python2.2/)
   94 2280138 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/python2.2/)
  105 2280243 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/python2.2/ already win32
   89 2280332 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\python2.2\ = normalize_win32_path (C:/cygwin/lib/python2.2/)
   94 2280426 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2280514 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/python2.2/, dst C:\cygwin\lib\python2.2\, flags 0xA, rc 0
  367 2280881 [main] insight 2048 symlink_info::check: not a symlink
  119 2281000 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\python2.2\, 0x22B240) (0xA)
  142 2281142 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\python2.2\), set_has_acls(8)
 7271 2288413 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/reg1.1/
  121 2288534 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\reg1.1\ = normalize_win32_path (C:/cygwin/lib/reg1.1/)
   94 2288628 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/reg1.1/)
   91 2288719 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/reg1.1/ already win32
  103 2288822 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\reg1.1\ = normalize_win32_path (C:/cygwin/lib/reg1.1/)
  120 2288942 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2289029 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/reg1.1/, dst C:\cygwin\lib\reg1.1\, flags 0xA, rc 0
  365 2289394 [main] insight 2048 symlink_info::check: not a symlink
  115 2289509 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\reg1.1\, 0x22B240) (0xA)
   97 2289606 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\reg1.1\), set_has_acls(8)
 6007 2295613 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/scons/
  128 2295741 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\scons\ = normalize_win32_path (C:/cygwin/lib/scons/)
   98 2295839 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/scons/)
  199 2296038 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/scons/ already win32
  106 2296144 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\scons\ = normalize_win32_path (C:/cygwin/lib/scons/)
   94 2296238 [main] insight 2048 set_flags: flags: binary (0x2)
   91 2296329 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/scons/, dst C:\cygwin\lib\scons\, flags 0xA, rc 0
  357 2296686 [main] insight 2048 symlink_info::check: not a symlink
  116 2296802 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\scons\, 0x22B240) (0xA)
  282 2297084 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\scons\), set_has_acls(8)
 6471 2303555 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/security/
  109 2303664 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\security\ = normalize_win32_path (C:/cygwin/lib/security/)
   94 2303758 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/security/)
   90 2303848 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/security/ already win32
  100 2303948 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\security\ = normalize_win32_path (C:/cygwin/lib/security/)
   94 2304042 [main] insight 2048 set_flags: flags: binary (0x2)
   99 2304141 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/security/, dst C:\cygwin\lib\security\, flags 0xA, rc 0
  334 2304475 [main] insight 2048 symlink_info::check: not a symlink
  114 2304589 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\security\, 0x22B240) (0xA)
   97 2304686 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\security\), set_has_acls(8)
 7127 2311813 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/texmf/
  138 2311951 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\texmf\ = normalize_win32_path (C:/cygwin/lib/texmf/)
   93 2312044 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/texmf/)
   90 2312134 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/texmf/ already win32
   91 2312225 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\texmf\ = normalize_win32_path (C:/cygwin/lib/texmf/)
   93 2312318 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2312406 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/texmf/, dst C:\cygwin\lib\texmf\, flags 0xA, rc 0
  382 2312788 [main] insight 2048 symlink_info::check: not a symlink
  118 2312906 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\texmf\, 0x22B240) (0xA)
  128 2313034 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\texmf\), set_has_acls(8)
 6709 2319743 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/tk8.4/
  118 2319861 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\tk8.4\ = normalize_win32_path (C:/cygwin/lib/tk8.4/)
  101 2319962 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/tk8.4/)
   90 2320052 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/tk8.4/ already win32
   89 2320141 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\tk8.4\ = normalize_win32_path (C:/cygwin/lib/tk8.4/)
   95 2320236 [main] insight 2048 set_flags: flags: binary (0x2)
   99 2320335 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/tk8.4/, dst C:\cygwin\lib\tk8.4\, flags 0xA, rc 0
 1688 2322023 [main] insight 2048 symlink_info::check: not a symlink
  218 2322241 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\tk8.4\, 0x22B240) (0xA)
  101 2322342 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\tk8.4\), set_has_acls(8)
 5753 2328095 [main] insight 2048 normalize_posix_path: src C:/cygwin/lib/w32api/
  115 2328210 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\w32api\ = normalize_win32_path (C:/cygwin/lib/w32api/)
   96 2328306 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/lib/w32api/)
  171 2328477 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/lib/w32api/ already win32
   96 2328573 [main] insight 2048 normalize_win32_path: C:\cygwin\lib\w32api\ = normalize_win32_path (C:/cygwin/lib/w32api/)
   95 2328668 [main] insight 2048 set_flags: flags: binary (0x2)
   89 2328757 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/lib/w32api/, dst C:\cygwin\lib\w32api\, flags 0xA, rc 0
  365 2329122 [main] insight 2048 symlink_info::check: not a symlink
  124 2329246 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\lib\w32api\, 0x22B240) (0xA)
  110 2329356 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\lib\w32api\), set_has_acls(8)
88333 2417689 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/
  140 2417829 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\ = normalize_win32_path (C:/cygwin/usr/share/)
   98 2417927 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/)
   95 2418022 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/ already win32
   90 2418112 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\ = normalize_win32_path (C:/cygwin/usr/share/)
   96 2418208 [main] insight 2048 set_flags: flags: binary (0x2)
  112 2418320 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/, dst C:\cygwin\usr\share\, flags 0xA, rc 0
  474 2418794 [main] insight 2048 symlink_info::check: not a symlink
  131 2418925 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\, 0x22B4A0) (0xA)
  100 2419025 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\), set_has_acls(8)
13682 2432707 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/awk/
  139 2432846 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\awk\ = normalize_win32_path (C:/cygwin/usr/share/awk/)
  101 2432947 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/awk/)
   94 2433041 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/awk/ already win32
   92 2433133 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\awk\ = normalize_win32_path (C:/cygwin/usr/share/awk/)
   99 2433232 [main] insight 2048 set_flags: flags: binary (0x2)
  151 2433383 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/awk/, dst C:\cygwin\usr\share\awk\, flags 0xA, rc 0
  345 2433728 [main] insight 2048 symlink_info::check: not a symlink
  118 2433846 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\awk\, 0x22B240) (0xA)
   95 2433941 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\awk\), set_has_acls(8)
 7890 2441831 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/doc/
  120 2441951 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\doc\ = normalize_win32_path (C:/cygwin/usr/share/doc/)
   94 2442045 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/doc/)
   91 2442136 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/doc/ already win32
   89 2442225 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\doc\ = normalize_win32_path (C:/cygwin/usr/share/doc/)
  123 2442348 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2442436 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/doc/, dst C:\cygwin\usr\share\doc\, flags 0xA, rc 0
  367 2442803 [main] insight 2048 symlink_info::check: not a symlink
  116 2442919 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\doc\, 0x22B240) (0xA)
   96 2443015 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\doc\), set_has_acls(8)
 7308 2450323 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/gettext/
  126 2450449 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\gettext\ = normalize_win32_path (C:/cygwin/usr/share/gettext/)
   94 2450543 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/gettext/)
   91 2450634 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/gettext/ already win32
  103 2450737 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\gettext\ = normalize_win32_path (C:/cygwin/usr/share/gettext/)
   95 2450832 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2450920 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/gettext/, dst C:\cygwin\usr\share\gettext\, flags 0xA, rc 0
  359 2451279 [main] insight 2048 symlink_info::check: not a symlink
  126 2451405 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\gettext\, 0x22B240) (0xA)
   97 2451502 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\gettext\), set_has_acls(8)
 6814 2458316 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/groff/
  139 2458455 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\groff\ = normalize_win32_path (C:/cygwin/usr/share/groff/)
   96 2458551 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/groff/)
   91 2458642 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/groff/ already win32
   90 2458732 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\groff\ = normalize_win32_path (C:/cygwin/usr/share/groff/)
   94 2458826 [main] insight 2048 set_flags: flags: binary (0x2)
  101 2458927 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/groff/, dst C:\cygwin\usr\share\groff\, flags 0xA, rc 0
  348 2459275 [main] insight 2048 symlink_info::check: not a symlink
  452 2459727 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\groff\, 0x22B240) (0xA)
  132 2459859 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\groff\), set_has_acls(8)
 7417 2467276 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/insight1.0/
  119 2467395 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\insight1.0\ = normalize_win32_path (C:/cygwin/usr/share/insight1.0/)
  107 2467502 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/insight1.0/)
  130 2467632 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/insight1.0/ already win32
   91 2467723 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\insight1.0\ = normalize_win32_path (C:/cygwin/usr/share/insight1.0/)
   96 2467819 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2467906 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/insight1.0/, dst C:\cygwin\usr\share\insight1.0\, flags 0xA, rc 0
  366 2468272 [main] insight 2048 symlink_info::check: not a symlink
  116 2468388 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\insight1.0\, 0x22B240) (0xA)
  134 2468522 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\insight1.0\), set_has_acls(8)
 7253 2475775 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/itcl3.2/
  117 2475892 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\itcl3.2\ = normalize_win32_path (C:/cygwin/usr/share/itcl3.2/)
 1181 2477073 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/itcl3.2/)
  187 2477260 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/itcl3.2/ already win32
   98 2477358 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\itcl3.2\ = normalize_win32_path (C:/cygwin/usr/share/itcl3.2/)
  136 2477494 [main] insight 2048 set_flags: flags: binary (0x2)
   94 2477588 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/itcl3.2/, dst C:\cygwin\usr\share\itcl3.2\, flags 0xA, rc 0
  460 2478048 [main] insight 2048 symlink_info::check: not a symlink
  162 2478210 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\itcl3.2\, 0x22B240) (0xA)
   98 2478308 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\itcl3.2\), set_has_acls(8)
 8523 2486831 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/itk3.2/
  122 2486953 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\itk3.2\ = normalize_win32_path (C:/cygwin/usr/share/itk3.2/)
   97 2487050 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/itk3.2/)
   91 2487141 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/itk3.2/ already win32
  103 2487244 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\itk3.2\ = normalize_win32_path (C:/cygwin/usr/share/itk3.2/)
   95 2487339 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2487427 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/itk3.2/, dst C:\cygwin\usr\share\itk3.2\, flags 0xA, rc 0
  381 2487808 [main] insight 2048 symlink_info::check: not a symlink
  121 2487929 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\itk3.2\, 0x22B240) (0xA)
   95 2488024 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\itk3.2\), set_has_acls(8)
 6790 2494814 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/iwidgets4.0.1/
  110 2494924 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\iwidgets4.0.1\ = normalize_win32_path (C:/cygwin/usr/share/iwidgets4.0.1/)
   95 2495019 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/iwidgets4.0.1/)
  102 2495121 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/iwidgets4.0.1/ already win32
   91 2495212 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\iwidgets4.0.1\ = normalize_win32_path (C:/cygwin/usr/share/iwidgets4.0.1/)
   95 2495307 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2495395 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/iwidgets4.0.1/, dst C:\cygwin\usr\share\iwidgets4.0.1\, flags 0xA, rc 0
  636 2496031 [main] insight 2048 symlink_info::check: not a symlink
  164 2496195 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\iwidgets4.0.1\, 0x22B240) (0xA)
  138 2496333 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\iwidgets4.0.1\), set_has_acls(8)
 6354 2502687 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/java/
  117 2502804 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\java\ = normalize_win32_path (C:/cygwin/usr/share/java/)
   94 2502898 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/java/)
   92 2502990 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/java/ already win32
   91 2503081 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\java\ = normalize_win32_path (C:/cygwin/usr/share/java/)
   94 2503175 [main] insight 2048 set_flags: flags: binary (0x2)
  100 2503275 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/java/, dst C:\cygwin\usr\share\java\, flags 0xA, rc 0
  347 2503622 [main] insight 2048 symlink_info::check: not a symlink
  116 2503738 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\java\, 0x22B240) (0xA)
   96 2503834 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\java\), set_has_acls(8)
 7659 2511493 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/locale/
  128 2511621 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\locale\ = normalize_win32_path (C:/cygwin/usr/share/locale/)
   94 2511715 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/locale/)
   92 2511807 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/locale/ already win32
  103 2511910 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\locale\ = normalize_win32_path (C:/cygwin/usr/share/locale/)
   95 2512005 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2512093 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/locale/, dst C:\cygwin\usr\share\locale\, flags 0xA, rc 0
  353 2512446 [main] insight 2048 symlink_info::check: not a symlink
  123 2512569 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\locale\, 0x22B240) (0xA)
   97 2512666 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\locale\), set_has_acls(8)
 6752 2519418 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/postgresql/
  110 2519528 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\postgresql\ = normalize_win32_path (C:/cygwin/usr/share/postgresql/)
  361 2519889 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/postgresql/)
  118 2520007 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/postgresql/ already win32
   94 2520101 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\postgresql\ = normalize_win32_path (C:/cygwin/usr/share/postgresql/)
   98 2520199 [main] insight 2048 set_flags: flags: binary (0x2)
  184 2520383 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/postgresql/, dst C:\cygwin\usr\share\postgresql\, flags 0xA, rc 0
  392 2520775 [main] insight 2048 symlink_info::check: not a symlink
  118 2520893 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\postgresql\, 0x22B240) (0xA)
   96 2520989 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\postgresql\), set_has_acls(8)
 7197 2528186 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/redhat/
  117 2528303 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\redhat\ = normalize_win32_path (C:/cygwin/usr/share/redhat/)
   94 2528397 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/redhat/)
   91 2528488 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/redhat/ already win32
  129 2528617 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\redhat\ = normalize_win32_path (C:/cygwin/usr/share/redhat/)
  109 2528726 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2528813 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/redhat/, dst C:\cygwin\usr\share\redhat\, flags 0xA, rc 0
  364 2529177 [main] insight 2048 symlink_info::check: not a symlink
  116 2529293 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\redhat\, 0x22B240) (0xA)
   95 2529388 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\redhat\), set_has_acls(8)
 7474 2536862 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tabset/
  133 2536995 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tabset\ = normalize_win32_path (C:/cygwin/usr/share/tabset/)
   94 2537089 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tabset/)
   92 2537181 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tabset/ already win32
  888 2538069 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tabset\ = normalize_win32_path (C:/cygwin/usr/share/tabset/)
  163 2538232 [main] insight 2048 set_flags: flags: binary (0x2)
   93 2538325 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tabset/, dst C:\cygwin\usr\share\tabset\, flags 0xA, rc 0
  531 2538856 [main] insight 2048 symlink_info::check: not a symlink
  152 2539008 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tabset\, 0x22B240) (0xA)
  101 2539109 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tabset\), set_has_acls(8)
 7693 2546802 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/
  125 2546927 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/)
   96 2547023 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/)
  104 2547127 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/ already win32
   91 2547218 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/)
   97 2547315 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2547402 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/, dst C:\cygwin\usr\share\tcl8.4\, flags 0xA, rc 0
  373 2547775 [main] insight 2048 symlink_info::check: not a symlink
  119 2547894 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\, 0x22B240) (0xA)
  109 2548003 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\), set_has_acls(8)
 6798 2554801 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/terminfo/
  115 2554916 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\terminfo\ = normalize_win32_path (C:/cygwin/usr/share/terminfo/)
   94 2555010 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/terminfo/)
   91 2555101 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/terminfo/ already win32
   90 2555191 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\terminfo\ = normalize_win32_path (C:/cygwin/usr/share/terminfo/)
  102 2555293 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2555381 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/terminfo/, dst C:\cygwin\usr\share\terminfo\, flags 0xA, rc 0
  692 2556073 [main] insight 2048 symlink_info::check: not a symlink
  172 2556245 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\terminfo\, 0x22B240) (0xA)
  102 2556347 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\terminfo\), set_has_acls(8)
 7277 2563624 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/texinfo/
  148 2563772 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\texinfo\ = normalize_win32_path (C:/cygwin/usr/share/texinfo/)
   94 2563866 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/texinfo/)
   91 2563957 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/texinfo/ already win32
  104 2564061 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\texinfo\ = normalize_win32_path (C:/cygwin/usr/share/texinfo/)
   95 2564156 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2564244 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/texinfo/, dst C:\cygwin\usr\share\texinfo\, flags 0xA, rc 0
  361 2564605 [main] insight 2048 symlink_info::check: not a symlink
  126 2564731 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\texinfo\, 0x22B240) (0xA)
   98 2564829 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\texinfo\), set_has_acls(8)
 7436 2572265 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tk8.4/
  118 2572383 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tk8.4\ = normalize_win32_path (C:/cygwin/usr/share/tk8.4/)
   94 2572477 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tk8.4/)
  103 2572580 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tk8.4/ already win32
   91 2572671 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tk8.4\ = normalize_win32_path (C:/cygwin/usr/share/tk8.4/)
  101 2572772 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2572859 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tk8.4/, dst C:\cygwin\usr\share\tk8.4\, flags 0xA, rc 0
  353 2573212 [main] insight 2048 symlink_info::check: not a symlink
  116 2573328 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tk8.4\, 0x22B240) (0xA)
  109 2573437 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tk8.4\), set_has_acls(8)
 7406 2580843 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/vim/
  120 2580963 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\vim\ = normalize_win32_path (C:/cygwin/usr/share/vim/)
  108 2581071 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/vim/)
   90 2581161 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/vim/ already win32
   90 2581251 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\vim\ = normalize_win32_path (C:/cygwin/usr/share/vim/)
   92 2581343 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2581430 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/vim/, dst C:\cygwin\usr\share\vim\, flags 0xA, rc 0
  558 2581988 [main] insight 2048 symlink_info::check: not a symlink
  169 2582157 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\vim\, 0x22B240) (0xA)
   99 2582256 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\vim\), set_has_acls(8)
31882 2614138 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/
  135 2614273 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/)
   93 2614366 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/)
   91 2614457 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/ already win32
   93 2614550 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/)
   95 2614645 [main] insight 2048 set_flags: flags: binary (0x2)
   88 2614733 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/, dst C:\cygwin\usr\share\tcl8.4\, flags 0xA, rc 0
  694 2615427 [main] insight 2048 symlink_info::check: not a symlink
  165 2615592 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\, 0x22B4A0) (0xA)
   99 2615691 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\), set_has_acls(8)
10770 2626461 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/encoding/
  154 2626615 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\encoding\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/encoding/)
   99 2626714 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/encoding/)
   94 2626808 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/encoding/ already win32
   91 2626899 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\encoding\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/encoding/)
  621 2627520 [main] insight 2048 set_flags: flags: binary (0x2)
  785 2628305 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/encoding/, dst C:\cygwin\usr\share\tcl8.4\encoding\, flags 0xA, rc 0
  510 2628815 [main] insight 2048 symlink_info::check: not a symlink
  393 2629208 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\encoding\, 0x22B240) (0xA)
  126 2629334 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\encoding\), set_has_acls(8)
10059 2639393 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/http1.0/
  121 2639514 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\http1.0\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/http1.0/)
  113 2639627 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/http1.0/)
   93 2639720 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/http1.0/ already win32
   92 2639812 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\http1.0\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/http1.0/)
   95 2639907 [main] insight 2048 set_flags: flags: binary (0x2)
  145 2640052 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/http1.0/, dst C:\cygwin\usr\share\tcl8.4\http1.0\, flags 0xA, rc 0
  387 2640439 [main] insight 2048 symlink_info::check: not a symlink
  408 2640847 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\http1.0\, 0x22B240) (0xA)
  156 2641003 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\http1.0\), set_has_acls(8)
 6689 2647692 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/http2.4/
  122 2647814 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\http2.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/http2.4/)
   96 2647910 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/http2.4/)
  117 2648027 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/http2.4/ already win32
   93 2648120 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\http2.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/http2.4/)
   96 2648216 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2648303 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/http2.4/, dst C:\cygwin\usr\share\tcl8.4\http2.4\, flags 0xA, rc 0
  357 2648660 [main] insight 2048 symlink_info::check: not a symlink
  118 2648778 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\http2.4\, 0x22B240) (0xA)
  112 2648890 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\http2.4\), set_has_acls(8)
 6480 2655370 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/msgcat1.3/
  141 2655511 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\msgcat1.3\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/msgcat1.3/)
  100 2655611 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/msgcat1.3/)
   92 2655703 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/msgcat1.3/ already win32
  103 2655806 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\msgcat1.3\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/msgcat1.3/)
   96 2655902 [main] insight 2048 set_flags: flags: binary (0x2)
   89 2655991 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/msgcat1.3/, dst C:\cygwin\usr\share\tcl8.4\msgcat1.3\, flags 0xA, rc 0
  352 2656343 [main] insight 2048 symlink_info::check: not a symlink
  117 2656460 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\msgcat1.3\, 0x22B240) (0xA)
   96 2656556 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\msgcat1.3\), set_has_acls(8)
 6795 2663351 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/opt0.4/
  142 2663493 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\opt0.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/opt0.4/)
   98 2663591 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/opt0.4/)
   92 2663683 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/opt0.4/ already win32
   91 2663774 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\opt0.4\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/opt0.4/)
   97 2663871 [main] insight 2048 set_flags: flags: binary (0x2)
   87 2663958 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/opt0.4/, dst C:\cygwin\usr\share\tcl8.4\opt0.4\, flags 0xA, rc 0
  364 2664322 [main] insight 2048 symlink_info::check: not a symlink
  118 2664440 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\opt0.4\, 0x22B240) (0xA)
   99 2664539 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\opt0.4\), set_has_acls(8)
 6162 2670701 [main] insight 2048 normalize_posix_path: src C:/cygwin/usr/share/tcl8.4/tcltest2.2/
  122 2670823 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\tcltest2.2\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/tcltest2.2/)
   98 2670921 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (C:/cygwin/usr/share/tcl8.4/tcltest2.2/)
   89 2671010 [main] insight 2048 mount_info::conv_to_win32_path: C:/cygwin/usr/share/tcl8.4/tcltest2.2/ already win32
  486 2671496 [main] insight 2048 normalize_win32_path: C:\cygwin\usr\share\tcl8.4\tcltest2.2\ = normalize_win32_path (C:/cygwin/usr/share/tcl8.4/tcltest2.2/)
  141 2671637 [main] insight 2048 set_flags: flags: binary (0x2)
   91 2671728 [main] insight 2048 mount_info::conv_to_win32_path: src_path C:/cygwin/usr/share/tcl8.4/tcltest2.2/, dst C:\cygwin\usr\share\tcl8.4\tcltest2.2\, flags 0xA, rc 0
  410 2672138 [main] insight 2048 symlink_info::check: not a symlink
  118 2672256 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\usr\share\tcl8.4\tcltest2.2\, 0x22B240) (0xA)
   98 2672354 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\usr\share\tcl8.4\tcltest2.2\), set_has_acls(8)
7585239 10257593 [main] insight 2048 normalize_posix_path: src /home/rcampbell
  128 10257721 [main] insight 2048 normalize_posix_path: /home/rcampbell = normalize_posix_path (/home/rcampbell)
  113 10257834 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
  106 10257940 [main] insight 2048 set_flags: flags: binary (0x2)
   92 10258032 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  425 10258457 [main] insight 2048 symlink_info::check: not a symlink
  138 10258595 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22D780) (0xA)
   97 10258692 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell), set_has_acls(8)
13205827 23464519 [main] insight 2048 open: open (/home/rcampbell/.gdbinit, 0x0)
  146 23464665 [main] insight 2048 normalize_posix_path: src /home/rcampbell/.gdbinit
  281 23464946 [main] insight 2048 normalize_posix_path: /home/rcampbell/.gdbinit = normalize_posix_path (/home/rcampbell/.gdbinit)
  126 23465072 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/.gdbinit)
  121 23465193 [main] insight 2048 set_flags: flags: binary (0x2)
  104 23465297 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/.gdbinit, dst C:\cygwin\home\rcampbell\.gdbinit, flags 0xA, rc 0
  498 23465795 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit) failed
  830 23466625 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  321 23466946 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.lnk) failed
  139 23467085 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  109 23467194 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\.gdbinit, 0x22F130) (0xA)
  114 23467308 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
 2924 23470232 [main] insight 2048 set_flags: flags: binary (0x2)
  245 23470477 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  260 23470737 [main] insight 2048 symlink_info::check: not a symlink
  119 23470856 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22F130) (0xA)
  115 23470971 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\.gdbinit), set_has_acls(8)
  120 23471091 [main] insight 2048 dtable::build_fhandler: fd 3, fh 0x615E089C
  114 23471205 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.gdbinit, 0x100000) query_open 0
  236 23471441 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.gdbinit, 0x80000000, 0x7, 0x22F570, 0x3, 0x2000080, 0)
  447 23471888 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
  137 23472025 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  107 23472132 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.gdbinit, 0x100000)
  109 23472241 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.gdbinit, 0x0)
  114 23472355 [main] insight 2048 open: -1 = open (/home/rcampbell/.gdbinit, 0x0)
  309 23472664 [main] insight 2048 stat64: entering
  131 23472795 [main] insight 2048 normalize_posix_path: src /home/rcampbell/.gdbinit
  111 23472906 [main] insight 2048 normalize_posix_path: /home/rcampbell/.gdbinit = normalize_posix_path (/home/rcampbell/.gdbinit)
  108 23473014 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/.gdbinit)
  117 23473131 [main] insight 2048 set_flags: flags: binary (0x2)
  105 23473236 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/.gdbinit, dst C:\cygwin\home\rcampbell\.gdbinit, flags 0xA, rc 0
  428 23473664 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit) failed
  147 23473811 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  170 23473981 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.exe) failed
  117 23474098 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  163 23474261 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.exe.lnk) failed
  131 23474392 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  176 23474568 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.lnk) failed
  111 23474679 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  105 23474784 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\.gdbinit, 0x22F2E0) (0xA)
  107 23474891 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
  113 23475004 [main] insight 2048 set_flags: flags: binary (0x2)
  102 23475106 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  161 23475267 [main] insight 2048 symlink_info::check: not a symlink
  106 23475373 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22F2E0) (0xA)
  145 23475518 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\.gdbinit), set_has_acls(8)
  116 23475634 [main] insight 2048 dtable::build_fhandler: fd -1, fh 0x615E089C
  107 23475741 [main] insight 2048 stat_worker: (/home/rcampbell/.gdbinit, 0x22FB60, 0, 0x22F7C0), file_attributes -1
  120 23475861 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.gdbinit, 0x110000) query_open 0
  201 23476062 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.gdbinit, 0x80000000, 0x7, 0x22F6E0, 0x3, 0x2000081, 0)
  120 23476182 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
  106 23476288 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  103 23476391 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  113 23476504 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  106 23476610 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.gdbinit, 0x110000) query_open 1
  172 23476782 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.gdbinit, 0x0, 0x7, 0x22F6E0, 0x3, 0x2000081, 0)
  117 23476899 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
  104 23477003 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  101 23477104 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  104 23477208 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  106 23477314 [main] insight 2048 fhandler_disk_file::fstat_by_name: already determined that pc does not exist
  106 23477420 [main] insight 2048 stat_worker: -1 = (/home/rcampbell/.gdbinit, 0x22FB60)
  130 23477550 [main] insight 2048 stat64: entering
  106 23477656 [main] insight 2048 normalize_posix_path: src .gdbinit
  105 23477761 [main] insight 2048 cwdstuff::get: posix /home/rcampbell
  101 23477862 [main] insight 2048 cwdstuff::get: (/home/rcampbell) = cwdstuff::get (0x22F620, 260, 1, 0), errno 2
  103 23477965 [main] insight 2048 normalize_posix_path: /home/rcampbell/.gdbinit = normalize_posix_path (.gdbinit)
  106 23478071 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/.gdbinit)
  112 23478183 [main] insight 2048 set_flags: flags: binary (0x2)
  101 23478284 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/.gdbinit, dst C:\cygwin\home\rcampbell\.gdbinit, flags 0xA, rc 0
  326 23478610 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit) failed
  131 23478741 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  162 23478903 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.exe) failed
  131 23479034 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  166 23479200 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.exe.lnk) failed
  112 23479312 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
10535 23489847 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdbinit.lnk) failed
  234 23490081 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  106 23490187 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\.gdbinit, 0x22F2E0) (0xA)
  111 23490298 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
  119 23490417 [main] insight 2048 set_flags: flags: binary (0x2)
  114 23490531 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
 1144 23491675 [main] insight 2048 symlink_info::check: not a symlink
  205 23491880 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22F2E0) (0xA)
  119 23491999 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\.gdbinit), set_has_acls(8)
  123 23492122 [main] insight 2048 dtable::build_fhandler: fd -1, fh 0x615E089C
  112 23492234 [main] insight 2048 stat_worker: (.gdbinit, 0x22FB60, 0, 0x22F7C0), file_attributes -1
  110 23492344 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.gdbinit, 0x110000) query_open 0
  276 23492620 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.gdbinit, 0x80000000, 0x7, 0x22F6E0, 0x3, 0x2000081, 0)
  141 23492761 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
  237 23492998 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  115 23493113 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  107 23493220 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  107 23493327 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.gdbinit, 0x110000) query_open 1
  248 23493575 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.gdbinit, 0x0, 0x7, 0x22F6E0, 0x3, 0x2000081, 0)
  128 23493703 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
  104 23493807 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  102 23493909 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  106 23494015 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.gdbinit, 0x110000)
  106 23494121 [main] insight 2048 fhandler_disk_file::fstat_by_name: already determined that pc does not exist
  106 23494227 [main] insight 2048 stat_worker: -1 = (.gdbinit, 0x22FB60)
 2210 23496437 [main] insight 2048 open: open (/home/rcampbell/.gdb_history, 0x10000)
  141 23496578 [main] insight 2048 normalize_posix_path: src /home/rcampbell/.gdb_history
  107 23496685 [main] insight 2048 normalize_posix_path: /home/rcampbell/.gdb_history = normalize_posix_path (/home/rcampbell/.gdb_history)
  105 23496790 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell/.gdb_history)
  116 23496906 [main] insight 2048 set_flags: flags: binary (0x2)
  103 23497009 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell/.gdb_history, dst C:\cygwin\home\rcampbell\.gdb_history, flags 0xA, rc 0
  431 23497440 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdb_history) failed
  346 23497786 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  249 23498035 [main] insight 2048 symlink_info::check: GetFileAttributes (C:\cygwin\home\rcampbell\.gdb_history.lnk) failed
  134 23498169 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  105 23498274 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell\.gdb_history, 0x22F2C0) (0xA)
  109 23498383 [main] insight 2048 mount_info::conv_to_win32_path: conv_to_win32_path (/home/rcampbell)
  125 23498508 [main] insight 2048 set_flags: flags: binary (0x2)
  104 23498612 [main] insight 2048 mount_info::conv_to_win32_path: src_path /home/rcampbell, dst C:\cygwin\home\rcampbell, flags 0xA, rc 0
  172 23498784 [main] insight 2048 symlink_info::check: not a symlink
  108 23498892 [main] insight 2048 symlink_info::check: 0 = symlink.check (C:\cygwin\home\rcampbell, 0x22F2C0) (0xA)
  108 23499000 [main] insight 2048 path_conv::check: root_dir(C:\), this->path(C:\cygwin\home\rcampbell\.gdb_history), set_has_acls(8)
  115 23499115 [main] insight 2048 dtable::build_fhandler: fd 3, fh 0x615E089C
  110 23499225 [main] insight 2048 fhandler_base::open: (C:\cygwin\home\rcampbell\.gdb_history, 0x110000) query_open 0
  195 23499420 [main] insight 2048 fhandler_base::open: 0xFFFFFFFF = CreateFile (C:\cygwin\home\rcampbell\.gdb_history, 0x80000000, 0x7, 0x22F700, 0x3, 0x2000080, 0)
  133 23499553 [main] insight 2048 seterrno_from_win_error: /netrel/src/cygwin-1.3.20-1/winsup/cygwin/fhandler.cc:476 windows error 2
  104 23499657 [main] insight 2048 geterrno_from_win_error: windows error 2 == errno 2
  102 23499759 [main] insight 2048 fhandler_base::open: 0 = fhandler_base::open (C:\cygwin\home\rcampbell\.gdb_history, 0x110000)
  106 23499865 [main] insight 2048 fhandler_disk_file::open: 0 = fhandler_disk_file::open (C:\cygwin\home\rcampbell\.gdb_history, 0x10000)
  111 23499976 [main] insight 2048 open: -1 = open (/home/rcampbell/.gdb_history, 0x10000)
10373275 33873251 [main] insight 2048 do_exit: do_exit (0)
  128 33873379 [main] insight 2048 void: 0x0 = signal (20, 0x1)
   90 33873469 [main] insight 2048 void: 0x49C8C0 = signal (1, 0x1)
   85 33873554 [main] insight 2048 void: 0x49C820 = signal (2, 0x1)
  252 33873806 [main] insight 2048 void: 0x49C880 = signal (3, 0x1)
   90 33873896 [main] insight 2048 fhandler_base::close: closing '/dev/piper' handle 0x14C
   98 33873994 [main] insight 2048 fhandler_base::close: closing '/dev/pipew' handle 0xE4
   92 33874086 [main] insight 2048 fhandler_base::close: closing '/dev/pipew' handle 0x160
   94 33874180 [main] insight 2048 sigproc_terminate: entering
   86 33874266 [main] insight 2048 proc_terminate: nchildren 0, nzombies 0
  115 33874381 [main] insight 2048 proc_terminate: leaving
  189 33874570 [main] insight 2048 __to_clock_t: dwHighDateTime 0, dwLowDateTime 110158400
  101 33874671 [main] insight 2048 __to_clock_t: total 00000000 00002B07
   87 33874758 [main] insight 2048 __to_clock_t: dwHighDateTime 0, dwLowDateTime 50372432
   83 33874841 [main] insight 2048 __to_clock_t: total 00000000 000013AD
  193 33875034 [main] insight 2048 _pinfo::exit: Calling ExitProcess 0

[-- Attachment #3: cygcheck.txt --]
[-- Type: text/plain, Size: 13436 bytes --]


Cygwin Win95/NT Configuration Diagnostics
Current System Time: Wed Feb 12 17:50:03 2003

Windows 2000 Professional Ver 5.0 Build 2195 Service Pack 3

Path:	C:\cygwin\usr\local\bin
	C:\cygwin\bin
	C:\cygwin\bin
	C:\WINNT\SYSTEM32
	C:\WINNT
	C:\WINNT\SYSTEM32\WBEM
	C:\PERFORCE
	C:\cygwin\bin
	C:\WINNT\system32
	C:\WINNT
	C:\WINNT\System32\Wbem
	C:\Perforce
	C:\cygwin\usr\local\bin
	C:\cygwin\bin
	C:\Program Files\SSH

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

HOME = `C:\cygwin\home\rcampbell'
MAKE_MODE = `unix'
PWD = `/c/base6/node/comp/SerialComm'
USER = `rcampbell'

ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
APPDATA = `C:\Documents and Settings\rcampbell\Application Data'
COLORFGBG = `0;default;15'
COLORTERM = `rxvt-xpm'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
COMPUTERNAME = `PCRCAMPBELL2'
COMSPEC = `C:\WINNT\system32\cmd.exe'
COSMIC = `c:/node.beta1/COSMIC'
DISPLAY = `:0'
HOMEDRIVE = `C:'
HOMEPATH = `\'
LOGONSERVER = `\\PCRCAMPBELL2'
MANPATH = `:/usr/ssl/man'
NUMBER_OF_PROCESSORS = `1'
OLDPWD = `/c/base6/node/comp'
OS2LIBPATH = `C:\WINNT\system32\os2\dll;'
OS = `Windows_NT'
OSE_ROOT = `C:\OSE\OSE4.4.1\'
P4CONFIG = `.p4config'
P4DIFF = `diff -uw'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyc;.pyo;.pyw;.pys'
PROCESSOR_ARCHITECTURE = `x86'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 8 Stepping 6, GenuineIntel'
PROCESSOR_LEVEL = `6'
PROCESSOR_REVISION = `0806'
PROGRAMFILES = `C:\Program Files'
PS1 = `\[^[[02;34m\]$PWD\[^[[02;33m\]>\[^[[0m\] '
SHLVL = `1'
SYSTEMDRIVE = `C:'
SYSTEMROOT = `C:\WINNT'
TEMP = `C:\Temp'
TERM = `xterm'
USERDNSDOMAIN = `tropicnetworks.com'
USERDOMAIN = `TROPICNETWORKS'
USERNAME = `rcampbell'
USERPROFILE = `C:\Documents and Settings\rcampbell'
USE_GCC3_FOR_DEPENDANCIES = `yes'
WINDIR = `C:\WINNT'
WINDOWID = `168046040'
_ = `/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
  (default) = `/cygdrive'
  cygdrive flags = 0x00000022
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/c
  (default) = `C:'
  flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/e
  (default) = `E:'
  flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/f
  (default) = `F:'
  flags = 0x00000000
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/g
  (default) = `\\Filer01\home\rcampbell'
  flags = 0x00000102
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/p
  (default) = `P:'
  flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/w
  (default) = `W:'
  flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygnus Solutions
  (default) = (unsupported type)
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\/d
  (default) = `D:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/h
  (default) = `H:'
  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

c:  hd  NTFS   19069Mb  80% CP CS UN PA FC     Campbell
d:  cd           N/A    N/A                    
e:  net NTFS   102400Mb  55% CP CS UN PA        pub
f:  net NTFS   859752Mb  85% CP CS UN PA FC     Backups
i:  net NTFS   102400Mb  55% CP CS UN PA        pub

C:                        /c         user    binmode
E:                        /e         user    binmode
F:                        /f         user    textmode
\\Filer01\home\rcampbell  /g         user    binmode
P:                        /p         user    binmode
W:                        /w         user    binmode
.                         /cygdrive  user    binmode,cygdrive
C:/cygwin                 /          system  binmode
D:                        /d         system  binmode
H:                        /h         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

   58k 2002/05/07 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2002/5/7 2:33
   54k 2002/01/27 C:\cygwin\bin\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz21.0.dll" v0.0 ts=2002/1/26 20:07
  847k 2003/01/09 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/1/9 15:41
  644k 2002/12/08 C:\cygwin\bin\cygcrypto.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto.dll" v0.0 ts=2002/12/8 14:57
  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 12:24
  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 12:25
   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/9 1:03
   19k 2002/02/20 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 22:05
   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 23:34
   20k 2002/10/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2002/10/10 13:28
  929k 2002/06/24 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2002/6/24 14:24
   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 4:28
   28k 2002/09/20 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2002/9/19 23:13
   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 13:09
   45k 2002/02/08 C:\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig1.dll" v0.0 ts=2002/2/7 18:59
  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/9 0:19
   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/9 1:03
  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/9 1:03
  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/9 1:03
   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/9 1:03
   40k 2001/11/21 C:\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre.dll" v0.0 ts=2001/11/21 17:15
   39k 2001/11/21 C:\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2001/11/21 17:15
  175k 2002/07/22 C:\cygwin\bin\cygpng10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng10.dll" v0.0 ts=2002/7/22 11:51
  179k 2002/07/22 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2002/7/22 12:03
  170k 2002/01/21 C:\cygwin\bin\cygpng2.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng2.dll" v0.0 ts=2002/1/20 20:05
   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/9 1: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 23:34
  127k 2002/10/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2002/10/10 13:28
   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 9:44
  177k 2003/01/09 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/1/9 15:41
  165k 2002/12/08 C:\cygwin\bin\cygssl.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl.dll" v0.0 ts=2002/12/8 14:57
   41k 2002/01/20 C:\cygwin\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX4.dll" v0.0 ts=2002/1/20 13:49
   46k 2002/01/20 C:\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-X4.dll" v0.0 ts=2002/1/20 13:50
   50k 2002/03/12 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2002/3/11 23:38
  889k 2003/02/08 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2003/2/8 12:10
    Cygwin DLL version info:
        DLL version: 1.3.20
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 73
        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: Sat Feb 8 12:10:49 EST 2003
        Shared id: cygwin1S3


Cygwin Package Information
Last downloaded files to: C:\cygwin\install
Last downloaded files from: http://mirrors.rcn.net/pub/sourceware/cygwin

Package              Version
_update-info-dir     00133-1
ash                  20020731-1
base-files           1.1-1
base-passwd          1.0-1
bash                 2.05b-8
binutils             20021117-1
bzip2                1.0.2-2
clear                1.0-1
cpio                 2.5-1
ctags                5.2-1
cygrunsrv            0.95-1
cygutils             1.1.3-1
cygwin               1.3.20-1
cygwin-doc           1.3-2
diff                 1.0-1
diffutils            2.8.1-1
file                 3.39-1
fileutils            4.1-1
findutils            4.1.7-4
gawk                 3.1.1-5
gcc                  3.2-3
gcc-mingw            20020817-5
gdb                  20030128-1
gdbm                 1.8.0-4
gettext              0.11.5-1
gperf                2.7.2-1
grep                 2.5-1
groff                1.18.1-2
gzip                 1.3.3-4
inetutils            1.3.2-20
jbigkit              1.2-6
jpeg                 6b-7
less                 378-1
libbz2_0             1.0.2-1
libbz2_1             1.0.2-2
libdb3.1             3.1.17-2
libiconv2            1.8-2
libintl              0.10.38-3
libintl1             0.10.40-1
libintl2             0.11.5-1
libncurses5          5.2-1
libncurses6          5.2-8
libpng               1.2.4-2
libpng10             1.0.14-2
libpng12             1.2.4-2
libpng2              1.0.12-1
libpopt0             1.6.4-4
libPropList          0.10.1-3
libreadline4         4.1-2
libreadline5         4.3-2
login                1.7-1
make                 3.79.1-7
makecyg              3.79.1-7
man                  1.5j-1
mingw                20010917-1
mingw-runtime        2.4-1
mktemp               1.4-1
ncurses              5.2-8
newlib-man           20020801
openssh              3.5p1-3
openssl              0.9.7-1
openssl096           0.9.6h-1
patch                2.5.8-3
pcre                 3.7-1
perl                 5.6.1-2
python               2.2.2-5
readline             4.3-2
regex                4.4-2
rxvt                 2.7.9-4
sed                  4.0.5-1
sh-utils             2.0.15-3
tar                  1.13.25-1
tcltk                20030128-3
termcap              20020930-1
terminfo             5.2-3
texinfo              4.2-4
textutils            2.0.21-1
time                 1.7-1
unzip                5.50-1
vim                  6.1.300-1
w32api               2.2-1
wget                 1.8.2-2
which                1.5-1
xpm-nox              4.2.0-1
zip                  2.3-2
zlib                 1.1.4-1

Use -h to see help about each section

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2003-02-20 20:31 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-11 17:14 Insight build problem on Cygwin David Mc Kenna
2003-02-11 17:56 ` Keith Seitz
2003-02-11 21:42 ` Rolf Campbell
2003-02-12  4:45   ` Insight build problem on cygwin Christopher Faylor
2003-02-13 16:39 Rolf Campbell
2003-02-13 17:12 ` Keith Seitz
2003-02-13 21:06   ` Christopher Faylor
2003-02-13 21:57     ` Keith Seitz
2003-02-13 21:13 Rolf Campbell
2003-02-13 22:04 Rolf Campbell
2003-02-13 22:43 ` Keith Seitz
2003-02-15 22:11   ` Rolf Campbell
2003-02-17 16:27     ` Keith Seitz
2003-02-17 16:49       ` Rolf Campbell
2003-02-19 22:49       ` Keith Seitz
2003-02-19 22:54         ` Rolf Campbell
2003-02-20  1:05           ` Keith Seitz
2003-02-20  2:36             ` Rolf Campbell
2003-02-20 17:55               ` Keith Seitz
2003-02-21 10:16                 ` Christopher Faylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).