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


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

"Segmentation fault" CygWin tools with code Injection-MS Detours


Hi,

I search (I think ;) ) in all forums, newsgroups, mailing list on
internet about this topic but I did not found anything.
I wrote an Advanced "truss like" tool to examine files opened by a
process by using code injection.
My truss tool works well on standard Win32 tools but generates a
"Segmentation fault" with Cygwin :(

My truss tool uses the Microsoft Detours toolkit 1.5 to create hooks
(this toolkit can be downloaded from the Microsoft site). This toolkit
is only an api layer injecting a dll in a child process, changing the
entry point of the thread of the child process (workflow of the
Microsoft DetourCreateProcessWithDll() method:

   1. Start the child process in suspend mode
   2. Call GetThreadContext to get the CS:IP of the entry point of the
      principal thread (main) of the child process
   3. Create a code memory block in the child process address space
      which will perform a LoadLibrary (on a hooking dll)  & rechained
      to the CS:IP obtained by the previous case 2
   4. Call SetThreadContext to set the code memory block (case 2) as new
      process starting entry point
   5. Remove the suspend mode if CreateProcess was not called in
      suspending mode, & so, start the child process

Next, the new entry point by loading the requested library by
LoadLibrary, will execute DllMain code in the loaded library which will
installs hooks. I personnaly install hooks on for exemple, CreateFile &
CreateProcess to auto inject in child process of the current loaded
process. You have in the toolkit, some standard samples, hooking the
CreateProcess to allow auto injection in sub processes (Instead of
having a CreateProcess chained to the original CreateProcess, it calls
the DetourCreateProcessWithDll).

By the fact, when injecting cygwin tools which has been compiled with
cygwin1.dll works, but cygwin tools forking a subprocess will failed
with a segmentation fault :(.
For exemple, injecting bash will work but when bash will try to fork a
child process like ls, it will failed :( :

******************************* Example
C:\cygwin>cygwin
bash: [: =: unary operator expected

llecaroz@VAUDREUIL ~
$ pwd
/cygdrive/c/Documents and Settings/llecaroz

llecaroz@VAUDREUIL ~
$ ls
Segmentation fault

llecaroz@VAUDREUIL ~
$ exit
******************************* End example
Looking to the truss debugging log we have :
******************************* Truss debugging log corresponding to the
previous example
20050811134348134 5228 50.60: filelog: 001
CreateProcessW(C:\cygwin\bin\bash.exe,bash --login
-i,0,0,1,0,0,C:\cygwin\bin,13f830,13f878)
20050811134348334 5228 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134348334 5228 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134348344 5228 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin)
20050811134348354 5228 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134348374 5228 50.60: filelog: 001 CreateProcessW(,,,,,,,,,) -> 1
20050811134349556 6052 50.60: filelog:
##################################################################
20050811134349556 6052 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134349616 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\bin)
20050811134349616 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin)
20050811134349626 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134349636 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134349656 6052 50.60: filelog: 001
CreateFileW(\\.\PIPE\lsarpc,c0000000,3,0,3,40000000,0)
20050811134349676 6052 50.60: filelog: 001 CreateFileW(,,,,,,) -> 708
20050811134349686 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\bin)
20050811134349696 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin)
20050811134349706 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134349716 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134349726 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\lib)
20050811134349736 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\lib)
20050811134349746 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134349756 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134349766 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\lib)
20050811134349776 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\lib)
20050811134349816 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134349816 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134349826 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\bin)
20050811134349836 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin)
20050811134349846 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134349856 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134349876 6052 50.60: filelog: 001
CreateFileW(\\.\PIPE\lsarpc,c0000000,3,0,3,40000000,0)
20050811134349876 6052 50.60: filelog: 001 CreateFileW(,,,,,,) -> 714
20050811134349886 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\passwd)
20050811134349896 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\passwd)
20050811134349916 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134349926 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134349936 6052 50.60: filelog: 001
CreateFileA(c:\cygwin\etc\passwd,80000000,7,0,3,80,0)
20050811134349956 6052 50.60: filelog: 001
CreateFileW(c:\cygwin\etc\passwd,80000000,7,0,3,80,0)
20050811134349977 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 708
20050811134349977 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 708
20050811134350007 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134350007 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134350017 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134350027 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134350037 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134350047 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134350057 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134350067 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134350097 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\group)
20050811134350097 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\group)
20050811134350107 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134350117 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134350127 6052 50.60: filelog: 001
CreateFileA(c:\cygwin\etc\group,80000000,7,0,3,80,0)
20050811134350147 6052 50.60: filelog: 001
CreateFileW(c:\cygwin\etc\group,80000000,7,0,3,80,0)
20050811134350157 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 708
20050811134350167 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 708
20050811134350197 6052 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350207 6052 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350207 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134350217 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134350227 6052 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350247 6052 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350247 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134350257 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134350267 6052 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350297 6052 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350297 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134350307 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134350317 6052 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350337 6052 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350337 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134350347 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134350357 6052 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350377 6052 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350377 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134350387 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134350397 6052 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350417 6052 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350417 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134350427 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134350487 6052 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350497 6052 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134350497 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134350507 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134350517 6052 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350537 6052 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134350537 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134350547 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134350567 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\tmp)
20050811134350567 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\tmp)
20050811134350577 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134350587 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134350668 6052 50.60: filelog: 001
CreateFileA(\\.\Ip,20000000,3,0,3,40000080,0)
20050811134350678 6052 50.60: filelog: 001
CreateFileW(\\.\Ip,20000000,3,0,3,40000080,0)
20050811134350678 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 6d4
20050811134350698 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 6d4
20050811134350718 6052 50.60: filelog: 001
CreateFileA(\\.\Ip6,20000000,3,0,3,40000080,0)
20050811134350728 6052 50.60: filelog: 001
CreateFileW(\\.\Ip6,20000000,3,0,3,40000080,0)
20050811134350728 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 6a8
20050811134350738 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 6a8
20050811134350788 6052 50.60: filelog: 001 GetFileAttributesW(C:\WINDOWS\)
20050811134350788 6052 50.60: filelog: 001 GetFileAttributesW() -> 10
20050811134350818 6052 50.60: filelog: 001
CreateFileW(\\.\WMIDataDevice,c0000000,0,0,3,40000080,0)
20050811134350818 6052 50.60: filelog: 001 CreateFileW(,,,,,,) -> 6a0
20050811134350838 6052 50.60: filelog: 001
CreateFileW(\\.\WMIDataDevice,c0000000,0,0,3,40000080,0)
20050811134350838 6052 50.60: filelog: 001 CreateFileW(,,,,,,) -> 674
20050811134350858 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\etc)
20050811134350868 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc)
20050811134350878 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134350888 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134350928 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134350928 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134350938 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134350958 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134350968 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\bin)
20050811134350998 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin)
20050811134351008 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134351018 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134351529 6052 50.60: filelog: 001 GetFileAttributesA(c:\cygwin\bin)
20050811134351529 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin)
20050811134351539 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134351549 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134351559 6052 50.60: filelog: 001
GetFileAttributesA(c:\substitutes\bash)
20050811134351569 6052 50.60: filelog: 001
GetFileAttributesW(c:\substitutes\bash)
20050811134351579 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351589 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351599 6052 50.60: filelog: 001
GetFileAttributesA(c:\substitutes\bash.exe)
20050811134351609 6052 50.60: filelog: 001
GetFileAttributesW(c:\substitutes\bash.exe)
20050811134351619 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351629 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351649 6052 50.60: filelog: 001
GetFileAttributesA(c:\substitutes\bash.exe.lnk)
20050811134351659 6052 50.60: filelog: 001
GetFileAttributesW(c:\substitutes\bash.exe.lnk)
20050811134351669 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351679 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351689 6052 50.60: filelog: 001
GetFileAttributesA(c:\substitutes\bash.lnk)
20050811134351699 6052 50.60: filelog: 001
GetFileAttributesW(c:\substitutes\bash.lnk)
20050811134351709 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351719 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351729 6052 50.60: filelog: 001
GetFileAttributesA(c:\substitutes)
20050811134351739 6052 50.60: filelog: 001
GetFileAttributesW(c:\substitutes)
20050811134351759 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134351769 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134351779 6052 50.60: filelog: 001
GetFileAttributesA(c:\ant\bin\bash)
20050811134351789 6052 50.60: filelog: 001
GetFileAttributesW(c:\ant\bin\bash)
20050811134351799 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351809 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351819 6052 50.60: filelog: 001
GetFileAttributesA(c:\ant\bin\bash.exe)
20050811134351829 6052 50.60: filelog: 001
GetFileAttributesW(c:\ant\bin\bash.exe)
20050811134351839 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351849 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351859 6052 50.60: filelog: 001
GetFileAttributesA(c:\ant\bin\bash.exe.lnk)
20050811134351869 6052 50.60: filelog: 001
GetFileAttributesW(c:\ant\bin\bash.exe.lnk)
20050811134351889 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351899 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351909 6052 50.60: filelog: 001
GetFileAttributesA(c:\ant\bin\bash.lnk)
20050811134351919 6052 50.60: filelog: 001
GetFileAttributesW(c:\ant\bin\bash.lnk)
20050811134351929 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134351959 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134351969 6052 50.60: filelog: 001 GetFileAttributesA(c:\ant\bin)
20050811134351979 6052 50.60: filelog: 001   GetFileAttributesW(c:\ant\bin)
20050811134351989 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134352000 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134352010 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash)
20050811134352020 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash)
20050811134352030 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352040 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352050 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash.exe)
20050811134352060 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash.exe)
20050811134352070 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352080 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352090 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash.exe.lnk)
20050811134352100 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash.exe.lnk)
20050811134352110 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352120 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352130 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash.lnk)
20050811134352140 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash.lnk)
20050811134352150 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352160 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352170 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools)
20050811134352180 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools)
20050811134352200 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134352210 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134352220 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-6.2.3-q8\bash)
20050811134352230 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-6.2.3-q8\bash)
20050811134352240 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352250 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352260 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-6.2.3-q8\bash.exe)
20050811134352270 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-6.2.3-q8\bash.exe)
20050811134352280 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352290 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352300 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-6.2.3-q8\bash.exe.lnk)
20050811134352310 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-6.2.3-q8\bash.exe.lnk)
20050811134352320 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352330 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352340 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-6.2.3-q8\bash.lnk)
20050811134352350 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-6.2.3-q8\bash.lnk)
20050811134352360 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352370 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352380 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-6.2.3-q8)
20050811134352400 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-6.2.3-q8)
20050811134352410 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134352420 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134352430 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash)
20050811134352440 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash)
20050811134352450 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352460 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352470 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash.exe)
20050811134352480 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash.exe)
20050811134352490 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352500 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352510 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash.exe.lnk)
20050811134352520 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash.exe.lnk)
20050811134352530 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352540 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352550 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash.lnk)
20050811134352560 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash.lnk)
20050811134352580 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352590 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352600 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities)
20050811134352610 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities)
20050811134352620 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134352630 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134352640 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash)
20050811134352650 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash)
20050811134352660 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352670 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352681 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash.exe)
20050811134352691 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash.exe)
20050811134352701 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352711 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352721 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash.exe.lnk)
20050811134352731 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash.exe.lnk)
20050811134352741 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352751 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352761 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash.lnk)
20050811134352781 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash.lnk)
20050811134352781 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352801 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352801 6052 50.60: filelog: 001 GetFileAttributesA(d:\Perl\bin)
20050811134352821 6052 50.60: filelog: 001   GetFileAttributesW(d:\Perl\bin)
20050811134352831 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134352841 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134352851 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash)
20050811134352861 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash)
20050811134352871 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352881 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352901 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash.exe)
20050811134352911 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash.exe)
20050811134352921 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134352931 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134352941 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash.exe.lnk)
20050811134352951 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash.exe.lnk)
20050811134352991 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353001 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353011 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash.lnk)
20050811134353021 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash.lnk)
20050811134353031 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353041 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353051 6052 50.60: filelog: 001 GetFileAttributesA(d:\gdwin32)
20050811134353061 6052 50.60: filelog: 001   GetFileAttributesW(d:\gdwin32)
20050811134353071 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134353081 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134353091 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash)
20050811134353101 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash)
20050811134353111 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353121 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353131 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash.exe)
20050811134353141 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash.exe)
20050811134353151 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353161 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353171 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash.exe.lnk)
20050811134353181 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash.exe.lnk)
20050811134353191 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353201 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353211 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash.lnk)
20050811134353221 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash.lnk)
20050811134353231 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353241 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353251 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8)
20050811134353261 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8)
20050811134353261 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134353281 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134353281 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash)
20050811134353291 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash)
20050811134353301 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353311 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353321 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash.exe)
20050811134353331 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash.exe)
20050811134353341 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353352 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353352 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash.exe.lnk)
20050811134353362 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash.exe.lnk)
20050811134353372 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353382 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353392 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash.lnk)
20050811134353402 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash.lnk)
20050811134353412 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353412 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353422 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip)
20050811134353432 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip)
20050811134353442 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134353452 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134353452 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash)
20050811134353462 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash)
20050811134353472 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353482 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353492 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash.exe)
20050811134353492 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash.exe)
20050811134353502 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353512 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353522 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash.exe.lnk)
20050811134353522 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash.exe.lnk)
20050811134353532 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353542 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353552 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash.lnk)
20050811134353552 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash.lnk)
20050811134353562 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353572 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353582 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin)
20050811134353582 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin)
20050811134353592 6052 50.60: filelog: 001   GetFileAttributesW() -> 11
20050811134353602 6052 50.60: filelog: 001 GetFileAttributesA() -> 11
20050811134353602 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash)
20050811134353612 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash)
20050811134353622 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353632 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353632 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash.exe)
20050811134353642 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash.exe)
20050811134353652 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353662 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353672 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash.exe.lnk)
20050811134353672 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash.exe.lnk)
20050811134353682 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353692 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353692 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash.lnk)
20050811134353702 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash.lnk)
20050811134353712 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353712 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353722 6052 50.60: filelog: 001 GetFileAttributesA(c:\Perl\bin)
20050811134353732 6052 50.60: filelog: 001   GetFileAttributesW(c:\Perl\bin)
20050811134353732 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134353742 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134353752 6052 50.60: filelog: 001 GetFileAttributesA(c:\BORCS\bash)
20050811134353762 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash)
20050811134353762 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353772 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353782 6052 50.60: filelog: 001
GetFileAttributesA(c:\BORCS\bash.exe)
20050811134353792 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash.exe)
20050811134353792 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353802 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353812 6052 50.60: filelog: 001
GetFileAttributesA(c:\BORCS\bash.exe.lnk)
20050811134353812 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash.exe.lnk)
20050811134353822 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353832 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353832 6052 50.60: filelog: 001
GetFileAttributesA(c:\BORCS\bash.lnk)
20050811134353842 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash.lnk)
20050811134353852 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353852 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353862 6052 50.60: filelog: 001 GetFileAttributesA(c:\BORCS)
20050811134353872 6052 50.60: filelog: 001   GetFileAttributesW(c:\BORCS)
20050811134353872 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134353882 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134353892 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash)
20050811134353892 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash)
20050811134353902 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353912 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353912 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash.exe)
20050811134353922 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash.exe)
20050811134353932 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353932 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353942 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash.exe.lnk)
20050811134353962 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash.exe.lnk)
20050811134353962 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134353972 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134353992 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash.lnk)
20050811134353992 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash.lnk)
20050811134354002 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354022 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354033 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin)
20050811134354043 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin)
20050811134354053 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134354053 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134354063 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash)
20050811134354073 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash)
20050811134354083 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354083 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354093 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash.exe)
20050811134354103 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash.exe)
20050811134354113 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354113 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354123 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash.exe.lnk)
20050811134354133 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash.exe.lnk)
20050811134354143 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354143 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354153 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash.lnk)
20050811134354163 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash.lnk)
20050811134354163 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354173 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354183 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32)
20050811134354193 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32)
20050811134354203 6052 50.60: filelog: 001   GetFileAttributesW() -> 30
20050811134354203 6052 50.60: filelog: 001 GetFileAttributesA() -> 30
20050811134354213 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash)
20050811134354223 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash)
20050811134354233 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354243 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354243 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash.exe)
20050811134354253 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash.exe)
20050811134354263 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354263 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354273 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash.exe.lnk)
20050811134354283 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash.exe.lnk)
20050811134354293 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354293 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354303 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash.lnk)
20050811134354313 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash.lnk)
20050811134354323 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354323 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354333 6052 50.60: filelog: 001 GetFileAttributesA(c:\WINDOWS)
20050811134354343 6052 50.60: filelog: 001   GetFileAttributesW(c:\WINDOWS)
20050811134354343 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134354353 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134354363 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash)
20050811134354373 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash)
20050811134354383 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354393 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354393 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash.exe)
20050811134354403 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash.exe)
20050811134354413 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354423 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354423 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash.exe.lnk)
20050811134354433 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash.exe.lnk)
20050811134354443 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354453 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354463 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash.lnk)
20050811134354463 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash.lnk)
20050811134354473 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354483 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354493 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem)
20050811134354493 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem)
20050811134354503 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134354513 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134354523 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash)
20050811134354533 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash)
20050811134354543 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354553 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354553 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash.exe)
20050811134354563 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash.exe)
20050811134354573 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354583 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354593 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash.exe.lnk)
20050811134354593 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash.exe.lnk)
20050811134354603 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354613 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354623 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash.lnk)
20050811134354633 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash.lnk)
20050811134354643 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354653 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354653 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common)
20050811134354663 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common)
20050811134354673 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134354683 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134354693 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash)
20050811134354704 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash)
20050811134354704 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354714 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354724 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash.exe)
20050811134354734 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash.exe)
20050811134354744 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354754 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354754 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash.exe.lnk)
20050811134354764 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash.exe.lnk)
20050811134354774 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354784 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354794 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash.lnk)
20050811134354804 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash.lnk)
20050811134354814 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354814 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354824 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify)
20050811134354834 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify)
20050811134354844 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134354854 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134354864 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash)
20050811134354864 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash)
20050811134354874 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354914 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354914 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash.exe)
20050811134354924 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash.exe)
20050811134354934 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354944 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134354954 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash.exe.lnk)
20050811134354984 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash.exe.lnk)
20050811134354984 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134354994 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355004 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash.lnk)
20050811134355014 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash.lnk)
20050811134355024 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355044 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355044 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache)
20050811134355054 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache)
20050811134355064 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355074 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355084 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache.lnk)
20050811134355104 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache.lnk)
20050811134355114 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355114 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355124 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify)
20050811134355134 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify)
20050811134355144 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134355164 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134355174 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash)
20050811134355174 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash)
20050811134355184 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355194 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355204 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash.exe)
20050811134355214 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash.exe)
20050811134355224 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355234 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355234 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash.exe.lnk)
20050811134355244 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash.exe.lnk)
20050811134355254 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355264 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355274 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash.lnk)
20050811134355274 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash.lnk)
20050811134355284 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355294 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355304 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin)
20050811134355314 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin)
20050811134355314 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134355324 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134355334 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash)
20050811134355344 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash)
20050811134355344 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355354 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355364 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash.exe)
20050811134355374 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash.exe)
20050811134355385 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355385 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355395 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash.exe.lnk)
20050811134355405 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash.exe.lnk)
20050811134355415 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355425 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355435 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash.lnk)
20050811134355435 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash.lnk)
20050811134355445 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355455 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355465 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin)
20050811134355475 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin)
20050811134355485 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134355495 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134355495 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash)
20050811134355505 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash)
20050811134355515 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355525 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355535 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash.exe)
20050811134355545 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash.exe)
20050811134355545 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355555 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355565 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash.exe.lnk)
20050811134355575 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash.exe.lnk)
20050811134355585 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355595 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355605 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash.lnk)
20050811134355615 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash.lnk)
20050811134355615 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355625 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355635 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT)
20050811134355645 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT)
20050811134355655 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134355665 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134355675 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash)
20050811134355685 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash)
20050811134355685 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355695 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355705 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.exe)
20050811134355735 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.exe)
20050811134355755 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355755 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355765 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.exe.lnk)
20050811134355775 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.exe.lnk)
20050811134355785 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355795 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355805 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.lnk)
20050811134355815 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.lnk)
20050811134355825 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355825 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355835 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22)
20050811134355855 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22)
20050811134355855 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134355865 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134355895 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash)
20050811134355905 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash)
20050811134355905 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355915 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355925 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash.exe)
20050811134355935 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash.exe)
20050811134355945 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134355945 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134355955 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash.exe.lnk)
20050811134356015 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash.exe.lnk)
20050811134356015 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356025 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356035 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash.lnk)
20050811134356045 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash.lnk)
20050811134356045 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356066 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356076 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin)
20050811134356086 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin)
20050811134356086 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134356096 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134356106 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash)
20050811134356116 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash)
20050811134356116 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356126 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356136 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash.exe)
20050811134356146 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash.exe)
20050811134356156 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356166 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356166 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash.exe.lnk)
20050811134356176 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash.exe.lnk)
20050811134356186 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356196 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356216 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash.lnk)
20050811134356216 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash.lnk)
20050811134356226 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356236 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356246 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt)
20050811134356246 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt)
20050811134356266 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134356266 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134356276 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash)
20050811134356286 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash)
20050811134356296 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356296 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356306 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.exe)
20050811134356326 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.exe)
20050811134356326 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356336 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356346 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.exe.lnk)
20050811134356356 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.exe.lnk)
20050811134356356 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356366 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356386 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.lnk)
20050811134356386 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.lnk)
20050811134356396 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356406 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356416 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22)
20050811134356416 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22)
20050811134356426 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134356436 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134356446 6052 50.60: filelog: 001
GetFileAttributesA(d:\SFU\common\bash)
20050811134356446 6052 50.60: filelog: 001
GetFileAttributesW(d:\SFU\common\bash)
20050811134356466 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356466 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356476 6052 50.60: filelog: 001
GetFileAttributesA(d:\SFU\common\bash.exe)
20050811134356486 6052 50.60: filelog: 001
GetFileAttributesW(d:\SFU\common\bash.exe)
20050811134356486 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356496 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356506 6052 50.60: filelog: 001
GetFileAttributesA(d:\SFU\common\bash.exe.lnk)
20050811134356516 6052 50.60: filelog: 001
GetFileAttributesW(d:\SFU\common\bash.exe.lnk)
20050811134356526 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356526 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356536 6052 50.60: filelog: 001
GetFileAttributesA(d:\SFU\common\bash.lnk)
20050811134356546 6052 50.60: filelog: 001
GetFileAttributesW(d:\SFU\common\bash.lnk)
20050811134356556 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356556 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356566 6052 50.60: filelog: 001 GetFileAttributesA(d:\SFU\common)
20050811134356576 6052 50.60: filelog: 001
GetFileAttributesW(d:\SFU\common)
20050811134356576 6052 50.60: filelog: 001   GetFileAttributesW() -> 830
20050811134356586 6052 50.60: filelog: 001 GetFileAttributesA() -> 830
20050811134356596 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash)
20050811134356596 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash)
20050811134356606 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356616 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356626 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash.exe)
20050811134356636 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash.exe)
20050811134356646 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356646 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356656 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash.exe.lnk)
20050811134356666 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash.exe.lnk)
20050811134356676 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356686 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356696 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities\bash.lnk)
20050811134356696 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities\bash.lnk)
20050811134356706 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356716 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356726 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\ThinkPad\Utilities)
20050811134356737 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\ThinkPad\Utilities)
20050811134356747 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134356757 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134356757 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash)
20050811134356767 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash)
20050811134356777 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356787 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356817 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash.exe)
20050811134356817 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash.exe)
20050811134356827 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356837 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356847 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash.exe.lnk)
20050811134356857 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash.exe.lnk)
20050811134356887 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356897 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356907 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools\bash.lnk)
20050811134356907 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools\bash.lnk)
20050811134356917 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134356927 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134356947 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Common Files\Symbian\Tools)
20050811134356957 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Common Files\Symbian\Tools)
20050811134356967 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134356977 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134356987 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash)
20050811134356987 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash)
20050811134357007 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357017 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357027 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash.exe)
20050811134357037 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash.exe)
20050811134357047 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357057 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357067 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash.exe.lnk)
20050811134357067 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash.exe.lnk)
20050811134357077 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357087 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357097 6052 50.60: filelog: 001
GetFileAttributesA(d:\Perl\bin\bash.lnk)
20050811134357107 6052 50.60: filelog: 001
GetFileAttributesW(d:\Perl\bin\bash.lnk)
20050811134357117 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357127 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357137 6052 50.60: filelog: 001 GetFileAttributesA(d:\Perl\bin)
20050811134357147 6052 50.60: filelog: 001   GetFileAttributesW(d:\Perl\bin)
20050811134357147 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134357157 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134357167 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash)
20050811134357177 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash)
20050811134357177 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357187 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357197 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash.exe)
20050811134357197 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash.exe)
20050811134357207 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357217 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357227 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash.exe.lnk)
20050811134357227 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash.exe.lnk)
20050811134357237 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357247 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357247 6052 50.60: filelog: 001
GetFileAttributesA(d:\gdwin32\bash.lnk)
20050811134357257 6052 50.60: filelog: 001
GetFileAttributesW(d:\gdwin32\bash.lnk)
20050811134357267 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357277 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357277 6052 50.60: filelog: 001 GetFileAttributesA(d:\gdwin32)
20050811134357287 6052 50.60: filelog: 001   GetFileAttributesW(d:\gdwin32)
20050811134357297 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134357297 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134357307 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash)
20050811134357317 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash)
20050811134357317 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357327 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357337 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash.exe)
20050811134357347 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash.exe)
20050811134357357 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357367 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357367 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash.exe.lnk)
20050811134357377 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash.exe.lnk)
20050811134357387 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357397 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357407 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8\bash.lnk)
20050811134357418 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8\bash.lnk)
20050811134357428 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357438 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357448 6052 50.60: filelog: 001 GetFileAttributesA(d:\program
files\imagemagick-5.5.7-q8)
20050811134357458 6052 50.60: filelog: 001
GetFileAttributesW(d:\program files\imagemagick-5.5.7-q8)
20050811134357468 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134357468 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134357478 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash)
20050811134357488 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash)
20050811134357498 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357508 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357518 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash.exe)
20050811134357528 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash.exe)
20050811134357528 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357538 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357548 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash.exe.lnk)
20050811134357558 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash.exe.lnk)
20050811134357568 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357578 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357588 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip\bash.lnk)
20050811134357598 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip\bash.lnk)
20050811134357608 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357608 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357618 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\WinZip)
20050811134357628 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\WinZip)
20050811134357638 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134357648 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134357648 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash)
20050811134357658 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash)
20050811134357668 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357678 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357678 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash.exe)
20050811134357688 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash.exe)
20050811134357698 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357708 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357718 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash.exe.lnk)
20050811134357728 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash.exe.lnk)
20050811134357728 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357738 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357748 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin\bash.lnk)
20050811134357758 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin\bash.lnk)
20050811134357768 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357768 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357778 6052 50.60: filelog: 001
GetFileAttributesA(c:\jdk1.3.1\bin)
20050811134357788 6052 50.60: filelog: 001
GetFileAttributesW(c:\jdk1.3.1\bin)
20050811134357798 6052 50.60: filelog: 001   GetFileAttributesW() -> 11
20050811134357798 6052 50.60: filelog: 001 GetFileAttributesA() -> 11
20050811134357808 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash)
20050811134357818 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash)
20050811134357818 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357828 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357838 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash.exe)
20050811134357848 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash.exe)
20050811134357848 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357858 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357868 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash.exe.lnk)
20050811134357868 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash.exe.lnk)
20050811134357878 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357888 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357898 6052 50.60: filelog: 001
GetFileAttributesA(c:\Perl\bin\bash.lnk)
20050811134357908 6052 50.60: filelog: 001
GetFileAttributesW(c:\Perl\bin\bash.lnk)
20050811134357908 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357918 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357928 6052 50.60: filelog: 001 GetFileAttributesA(c:\Perl\bin)
20050811134357928 6052 50.60: filelog: 001   GetFileAttributesW(c:\Perl\bin)
20050811134357938 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134357948 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134357958 6052 50.60: filelog: 001 GetFileAttributesA(c:\BORCS\bash)
20050811134357958 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash)
20050811134357978 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134357978 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134357988 6052 50.60: filelog: 001
GetFileAttributesA(c:\BORCS\bash.exe)
20050811134357998 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash.exe)
20050811134357998 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358008 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358018 6052 50.60: filelog: 001
GetFileAttributesA(c:\BORCS\bash.exe.lnk)
20050811134358028 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash.exe.lnk)
20050811134358038 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358038 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358048 6052 50.60: filelog: 001
GetFileAttributesA(c:\BORCS\bash.lnk)
20050811134358058 6052 50.60: filelog: 001
GetFileAttributesW(c:\BORCS\bash.lnk)
20050811134358068 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358068 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358078 6052 50.60: filelog: 001 GetFileAttributesA(c:\BORCS)
20050811134358089 6052 50.60: filelog: 001   GetFileAttributesW(c:\BORCS)
20050811134358089 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134358099 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134358109 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash)
20050811134358109 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash)
20050811134358119 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358129 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358129 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash.exe)
20050811134358139 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash.exe)
20050811134358149 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358149 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358159 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash.exe.lnk)
20050811134358169 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash.exe.lnk)
20050811134358179 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358179 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358189 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin\bash.lnk)
20050811134358199 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin\bash.lnk)
20050811134358209 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358209 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358219 6052 50.60: filelog: 001
GetFileAttributesA(c:\oracle\ora81\bin)
20050811134358229 6052 50.60: filelog: 001
GetFileAttributesW(c:\oracle\ora81\bin)
20050811134358239 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134358239 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134358249 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash)
20050811134358259 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash)
20050811134358269 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358269 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358279 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash.exe)
20050811134358289 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash.exe)
20050811134358299 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358299 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358309 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash.exe.lnk)
20050811134358319 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash.exe.lnk)
20050811134358329 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358329 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358339 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32\bash.lnk)
20050811134358349 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32\bash.lnk)
20050811134358359 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358369 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358369 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\system32)
20050811134358379 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\system32)
20050811134358389 6052 50.60: filelog: 001   GetFileAttributesW() -> 30
20050811134358399 6052 50.60: filelog: 001 GetFileAttributesA() -> 30
20050811134358409 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash)
20050811134358409 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash)
20050811134358419 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358429 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358439 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash.exe)
20050811134358439 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash.exe)
20050811134358449 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358459 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358469 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash.exe.lnk)
20050811134358469 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash.exe.lnk)
20050811134358479 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358489 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358499 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\bash.lnk)
20050811134358499 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\bash.lnk)
20050811134358509 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358519 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358529 6052 50.60: filelog: 001 GetFileAttributesA(c:\WINDOWS)
20050811134358529 6052 50.60: filelog: 001   GetFileAttributesW(c:\WINDOWS)
20050811134358539 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134358549 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134358549 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash)
20050811134358559 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash)
20050811134358569 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358579 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358589 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash.exe)
20050811134358589 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash.exe)
20050811134358599 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358609 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358619 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash.exe.lnk)
20050811134358619 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash.exe.lnk)
20050811134358629 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358639 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358649 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem\bash.lnk)
20050811134358649 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem\bash.lnk)
20050811134358669 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358669 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358679 6052 50.60: filelog: 001
GetFileAttributesA(c:\WINDOWS\System32\Wbem)
20050811134358689 6052 50.60: filelog: 001
GetFileAttributesW(c:\WINDOWS\System32\Wbem)
20050811134358699 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134358709 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134358709 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash)
20050811134358719 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash)
20050811134358729 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358739 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358749 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash.exe)
20050811134358759 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash.exe)
20050811134358759 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358770 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358780 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash.exe.lnk)
20050811134358790 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash.exe.lnk)
20050811134358800 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358810 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358810 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common\bash.lnk)
20050811134358820 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common\bash.lnk)
20050811134358830 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358840 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358850 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\common)
20050811134358860 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\common)
20050811134358860 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134358870 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134358880 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash)
20050811134358890 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash)
20050811134358900 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358910 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358920 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash.exe)
20050811134358930 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash.exe)
20050811134358940 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358940 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358950 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash.exe.lnk)
20050811134358960 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash.exe.lnk)
20050811134358970 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134358980 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134358990 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\bash.lnk)
20050811134358990 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\bash.lnk)
20050811134359000 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359020 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359020 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify)
20050811134359030 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify)
20050811134359040 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134359050 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134359060 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash)
20050811134359070 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash)
20050811134359070 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359080 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359090 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash.exe)
20050811134359100 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash.exe)
20050811134359110 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359120 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359130 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash.exe.lnk)
20050811134359130 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash.exe.lnk)
20050811134359150 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359160 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359170 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache\bash.lnk)
20050811134359180 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache\bash.lnk)
20050811134359190 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359190 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359200 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache)
20050811134359210 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache)
20050811134359220 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359230 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359240 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify\cache.lnk)
20050811134359250 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify\cache.lnk)
20050811134359260 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359270 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359280 6052 50.60: filelog: 001 GetFileAttributesA(c:\Program
Files\Rational\Purify)
20050811134359290 6052 50.60: filelog: 001
GetFileAttributesW(c:\Program Files\Rational\Purify)
20050811134359300 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134359310 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134359310 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash)
20050811134359320 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash)
20050811134359330 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359340 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359350 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash.exe)
20050811134359360 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash.exe)
20050811134359380 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359390 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359400 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash.exe.lnk)
20050811134359410 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash.exe.lnk)
20050811134359420 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359420 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359441 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin\bash.lnk)
20050811134359451 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin\bash.lnk)
20050811134359451 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359461 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359471 6052 50.60: filelog: 001
GetFileAttributesA(c:\PROGRA~1\Tcl\bin)
20050811134359481 6052 50.60: filelog: 001
GetFileAttributesW(c:\PROGRA~1\Tcl\bin)
20050811134359491 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134359501 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134359511 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash)
20050811134359511 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash)
20050811134359521 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359531 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359551 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash.exe)
20050811134359561 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash.exe)
20050811134359561 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359571 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359581 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash.exe.lnk)
20050811134359591 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash.exe.lnk)
20050811134359601 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359611 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359621 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\bash.lnk)
20050811134359621 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\bash.lnk)
20050811134359631 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359641 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359661 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin)
20050811134359661 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin)
20050811134359671 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134359681 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134359691 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash)
20050811134359701 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash)
20050811134359721 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359731 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359731 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash.exe)
20050811134359741 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash.exe)
20050811134359751 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359761 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359771 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash.exe.lnk)
20050811134359781 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash.exe.lnk)
20050811134359781 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359801 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359801 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT\bash.lnk)
20050811134359811 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT\bash.lnk)
20050811134359821 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359831 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359841 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft SDK\Bin\WinNT)
20050811134359851 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft SDK\Bin\WinNT)
20050811134359861 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134359871 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134359881 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash)
20050811134359891 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash)
20050811134359891 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359901 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359911 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.exe)
20050811134359921 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.exe)
20050811134359951 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359951 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134359961 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.exe.lnk)
20050811134359971 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.exe.lnk)
20050811134359981 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134359991 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400021 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22\bash.lnk)
20050811134400021 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22\bash.lnk)
20050811134400031 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400041 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400051 6052 50.60: filelog: 001
GetFileAttributesA(c:\IBMTOOLS\Python22)
20050811134400061 6052 50.60: filelog: 001
GetFileAttributesW(c:\IBMTOOLS\Python22)
20050811134400071 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134400081 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134400091 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash)
20050811134400091 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash)
20050811134400101 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400111 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400122 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash.exe)
20050811134400122 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash.exe)
20050811134400132 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400142 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400152 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash.exe.lnk)
20050811134400152 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash.exe.lnk)
20050811134400172 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400182 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400182 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin\bash.lnk)
20050811134400192 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin\bash.lnk)
20050811134400202 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400212 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400222 6052 50.60: filelog: 001
GetFileAttributesA(d:\MySQL\MySQL Server 4.1\bin)
20050811134400232 6052 50.60: filelog: 001
GetFileAttributesW(d:\MySQL\MySQL Server 4.1\bin)
20050811134400232 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134400242 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134400252 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash)
20050811134400262 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash)
20050811134400272 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400272 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400282 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash.exe)
20050811134400292 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash.exe)
20050811134400302 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400312 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400322 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash.exe.lnk)
20050811134400332 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash.exe.lnk)
20050811134400332 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400342 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400352 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt\bash.lnk)
20050811134400362 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt\bash.lnk)
20050811134400372 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400372 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400382 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\cvsnt)
20050811134400392 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\cvsnt)
20050811134400402 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134400402 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134400412 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\WinNT\bash)
20050811134400422 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\WinNT\bash)
20050811134400432 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400442 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400452 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\WinNT\bash.exe)
20050811134400462 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\WinNT\bash.exe)
20050811134400472 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400482 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400492 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\WinNT\bash.exe.lnk)
20050811134400502 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\WinNT\bash.exe.lnk)
20050811134400512 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400522 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400532 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\WinNT\bash.lnk)
20050811134400542 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\WinNT\bash.lnk)
20050811134400552 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400562 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400572 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\WinNT)
20050811134400582 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\WinNT)
20050811134400592 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134400602 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134400612 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\MSDev98\Bin\bash)
20050811134400622 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\MSDev98\Bin\bash)
20050811134400632 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400642 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400652 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\MSDev98\Bin\bash.exe)
20050811134400662 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\MSDev98\Bin\bash.exe)
20050811134400672 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400682 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400692 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\MSDev98\Bin\bash.exe.lnk)
20050811134400702 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\MSDev98\Bin\bash.exe.lnk)
20050811134400712 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400732 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400742 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\MSDev98\Bin\bash.lnk)
20050811134400752 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\MSDev98\Bin\bash.lnk)
20050811134400762 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400772 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400782 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\MSDev98\Bin)
20050811134400793 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\MSDev98\Bin)
20050811134400803 6052 50.60: filelog: 001   GetFileAttributesW() -> 830
20050811134400813 6052 50.60: filelog: 001 GetFileAttributesA() -> 830
20050811134400823 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\bash)
20050811134400833 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\bash)
20050811134400843 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400853 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400863 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\bash.exe)
20050811134400883 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\bash.exe)
20050811134400893 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400903 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400913 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\bash.exe.lnk)
20050811134400923 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\bash.exe.lnk)
20050811134400933 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400963 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134400963 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools\bash.lnk)
20050811134400973 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\Common\Tools\bash.lnk)
20050811134400983 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134400993 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401003 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\Common\Tools)
20050811134401033 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual Studio\Common\Tools)
20050811134401043 6052 50.60: filelog: 001   GetFileAttributesW() -> 830
20050811134401043 6052 50.60: filelog: 001 GetFileAttributesA() -> 830
20050811134401083 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\VC98\bin\bash)
20050811134401093 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual Studio\VC98\bin\bash)
20050811134401103 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401103 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401113 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\VC98\bin\bash.exe)
20050811134401123 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\VC98\bin\bash.exe)
20050811134401143 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401153 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401163 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\VC98\bin\bash.exe.lnk)
20050811134401173 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\VC98\bin\bash.exe.lnk)
20050811134401183 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401183 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401203 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\VC98\bin\bash.lnk)
20050811134401213 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual
Studio\VC98\bin\bash.lnk)
20050811134401223 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401233 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401243 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\Microsoft Visual Studio\VC98\bin)
20050811134401253 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\Microsoft Visual Studio\VC98\bin)
20050811134401263 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134401273 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134401273 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion\mercury\bash)
20050811134401293 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion\mercury\bash)
20050811134401303 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401313 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401323 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion\mercury\bash.exe)
20050811134401333 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion\mercury\bash.exe)
20050811134401343 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401353 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401363 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion\mercury\bash.exe.lnk)
20050811134401373 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion\mercury\bash.exe.lnk)
20050811134401393 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401393 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401403 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion\mercury\bash.lnk)
20050811134401403 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion\mercury\bash.lnk)
20050811134401423 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401423 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401443 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion\mercury)
20050811134401443 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion\mercury)
20050811134401463 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401463 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401474 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion\mercury.lnk)
20050811134401484 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion\mercury.lnk)
20050811134401494 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401504 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401514 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion)
20050811134401514 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion)
20050811134401534 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401534 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401544 6052 50.60: filelog: 001
GetFileAttributesA(e:\marion\orion.lnk)
20050811134401554 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion\orion.lnk)
20050811134401564 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401564 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401574 6052 50.60: filelog: 001 GetFileAttributesA(e:\marion)
20050811134401584 6052 50.60: filelog: 001   GetFileAttributesW(e:\marion)
20050811134401594 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401594 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401604 6052 50.60: filelog: 001 GetFileAttributesA(e:\marion.lnk)
20050811134401614 6052 50.60: filelog: 001
GetFileAttributesW(e:\marion.lnk)
20050811134401624 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401624 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401634 6052 50.60: filelog: 001 GetFileAttributesA(e:\)
20050811134401644 6052 50.60: filelog: 001   GetFileAttributesW(e:\)
20050811134401654 6052 50.60: filelog: 001   GetFileAttributesW() -> 11
20050811134401654 6052 50.60: filelog: 001 GetFileAttributesA() -> 11
20050811134401674 6052 50.60: filelog: 001
GetFileAttributesA(x:\Others\Packsign\bash)
20050811134401674 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others\Packsign\bash)
20050811134401744 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401744 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401744 6052 50.60: filelog: 001
GetFileAttributesA(x:\Others\Packsign\bash.exe)
20050811134401754 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others\Packsign\bash.exe)
20050811134401814 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401814 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401814 6052 50.60: filelog: 001
GetFileAttributesA(x:\Others\Packsign\bash.exe.lnk)
20050811134401824 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others\Packsign\bash.exe.lnk)
20050811134401884 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401884 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401884 6052 50.60: filelog: 001
GetFileAttributesA(x:\Others\Packsign\bash.lnk)
20050811134401894 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others\Packsign\bash.lnk)
20050811134401954 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134401954 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134401964 6052 50.60: filelog: 001
GetFileAttributesA(x:\Others\Packsign)
20050811134401974 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others\Packsign)
20050811134402044 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402044 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402054 6052 50.60: filelog: 001
GetFileAttributesA(x:\Others\Packsign.lnk)
20050811134402054 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others\Packsign.lnk)
20050811134402124 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402124 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402134 6052 50.60: filelog: 001 GetFileAttributesA(x:\Others)
20050811134402134 6052 50.60: filelog: 001   GetFileAttributesW(x:\Others)
20050811134402195 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402195 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402215 6052 50.60: filelog: 001 GetFileAttributesA(x:\Others.lnk)
20050811134402215 6052 50.60: filelog: 001
GetFileAttributesW(x:\Others.lnk)
20050811134402265 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402265 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402275 6052 50.60: filelog: 001 GetFileAttributesA(x:\)
20050811134402285 6052 50.60: filelog: 001   GetFileAttributesW(x:\)
20050811134402345 6052 50.60: filelog: 001   GetFileAttributesW() -> 30
20050811134402345 6052 50.60: filelog: 001 GetFileAttributesA() -> 30
20050811134402585 6052 50.60: filelog: 001 GetFileAttributesA(c:\bin\bash)
20050811134402585 6052 50.60: filelog: 001   GetFileAttributesW(c:\bin\bash)
20050811134402595 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402595 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402605 6052 50.60: filelog: 001
GetFileAttributesA(c:\bin\bash.exe)
20050811134402615 6052 50.60: filelog: 001
GetFileAttributesW(c:\bin\bash.exe)
20050811134402615 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402625 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402635 6052 50.60: filelog: 001
GetFileAttributesA(c:\bin\bash.exe.lnk)
20050811134402635 6052 50.60: filelog: 001
GetFileAttributesW(c:\bin\bash.exe.lnk)
20050811134402645 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402655 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402655 6052 50.60: filelog: 001
GetFileAttributesA(c:\bin\bash.lnk)
20050811134402665 6052 50.60: filelog: 001
GetFileAttributesW(c:\bin\bash.lnk)
20050811134402675 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402675 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402685 6052 50.60: filelog: 001 GetFileAttributesA(c:\bin)
20050811134402685 6052 50.60: filelog: 001   GetFileAttributesW(c:\bin)
20050811134402695 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402705 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402705 6052 50.60: filelog: 001 GetFileAttributesA(c:\bin.lnk)
20050811134402715 6052 50.60: filelog: 001   GetFileAttributesW(c:\bin.lnk)
20050811134402725 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402725 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402735 6052 50.60: filelog: 001 GetFileAttributesA(c:\)
20050811134402745 6052 50.60: filelog: 001   GetFileAttributesW(c:\)
20050811134402745 6052 50.60: filelog: 001   GetFileAttributesW() -> 36
20050811134402755 6052 50.60: filelog: 001 GetFileAttributesA() -> 36
20050811134402765 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\UltraEdit\bash)
20050811134402765 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\UltraEdit\bash)
20050811134402775 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402785 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402795 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\UltraEdit\bash.exe)
20050811134402795 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\UltraEdit\bash.exe)
20050811134402805 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402815 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402826 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\UltraEdit\bash.exe.lnk)
20050811134402836 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\UltraEdit\bash.exe.lnk)
20050811134402836 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402846 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402856 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\UltraEdit\bash.lnk)
20050811134402866 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\UltraEdit\bash.lnk)
20050811134402866 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402876 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402886 6052 50.60: filelog: 001 GetFileAttributesA(d:\Program
Files\UltraEdit)
20050811134402896 6052 50.60: filelog: 001
GetFileAttributesW(d:\Program Files\UltraEdit)
20050811134402906 6052 50.60: filelog: 001   GetFileAttributesW() -> 810
20050811134402906 6052 50.60: filelog: 001 GetFileAttributesA() -> 810
20050811134402916 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\bash)
20050811134402926 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\bash)
20050811134402936 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134402946 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134402946 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\bash.exe)
20050811134402956 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\bash.exe)
20050811134402966 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134402976 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134402986 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\bash)
20050811134402986 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\bash)
20050811134402996 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134403006 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134403016 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\bash.exe)
20050811134403026 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\bash.exe)
20050811134403036 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134403036 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134403126 6052 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403126 6052 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403136 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134403136 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134403146 6052 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403156 6052 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403156 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134403166 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134403166 6052 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403186 6052 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403186 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 23
20050811134403196 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 23
20050811134403196 6052 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403216 6052 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403216 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 27
20050811134403226 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 27
20050811134403236 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile)
20050811134403236 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile)
20050811134403246 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134403246 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134403276 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x1,40000080,0,610e91e4,3,0,0)
20050811134403286 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x1,40000080,0,610e91e4,3,0,0)
20050811134403286 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 63c
20050811134403296 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 63c
20050811134403316 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134403326 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134403326 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134403336 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134403336 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22e360,22e3b0)
20050811134403346 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134403366 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134403386 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134403416 1056 50.60: filelog:
##################################################################
20050811134403416 1056 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134403496 1056 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403507 1056 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403507 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134403517 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134403527 1056 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403547 1056 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403547 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134403557 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134403567 1056 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403587 1056 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403587 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134403597 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134403607 1056 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403627 1056 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403627 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134403637 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134403647 1056 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403667 1056 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403667 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134403677 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134403687 1056 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403697 1056 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403697 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134403707 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134403717 1056 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403727 1056 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134403727 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134403737 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134403747 1056 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403757 1056 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134403757 1056 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134403767 1056 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134403807 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134403807 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134403817 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134403827 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134403837 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d)
20050811134403847 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d)
20050811134403847 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134403857 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134403877 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403877 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403907 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134403907 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134403917 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403927 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403937 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134403937 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134403947 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403957 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403967 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134403967 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134403977 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403987 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\00xorg-x11-base.sh)
20050811134403997 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134404007 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134404027 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x2,40000080,0,610e91e4,3,0,0)
20050811134404047 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x2,40000080,0,610e91e4,3,0,0)
20050811134404047 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 620
20050811134404047 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 620
20050811134404057 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134404077 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134404077 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134404087 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134404097 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22de70,22dec0)
20050811134404107 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134404117 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134404137 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134404167  460 50.60: filelog:
##################################################################
20050811134404167  460 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134404178  460 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404198  460 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404208  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134404218  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134404228  460 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404248  460 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404248  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134404258  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134404268  460 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404288  460 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404288  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134404298  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134404308  460 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404328  460 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404328  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134404338  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134404348  460 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404368  460 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404368  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134404378  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134404388  460 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404408  460 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404408  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134404418  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134404418  460 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404438  460 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404438  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134404438  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134404448  460 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404468  460 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404468  460 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134404468  460 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134404478 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134404498 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134404498 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134404498 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134404508 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22de70,22dec0)
20050811134404518 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134404528 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134404548 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134404578 5080 50.60: filelog:
##################################################################
20050811134404578 5080 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134404608 5080 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404618 5080 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404618 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134404628 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134404638 5080 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404658 5080 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404658 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134404668 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134404678 5080 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404698 5080 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404698 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134404708 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134404718 5080 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404738 5080 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404738 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134404748 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134404758 5080 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404778 5080 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404778 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134404788 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134404798 5080 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404808 5080 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404808 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134404818 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134404828 5080 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404838 5080 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134404838 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134404848 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134404859 5080 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404869 5080 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134404869 5080 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134404879 5080 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134404909 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde314.sh)
20050811134404909 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde314.sh)
20050811134404959 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134404959 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134404969 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde314.sh)
20050811134404989 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde314.sh)
20050811134404989 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134404989 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134404999 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde314.sh)
20050811134405009 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde314.sh)
20050811134405009 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405019 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405029 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde314.sh)
20050811134405049 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde314.sh)
20050811134405049 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405059 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405079 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405079 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405129 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405129 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405139 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405139 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405149 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405159 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405169 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405169 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405179 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405189 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405199 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405199 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\kde34.sh)
20050811134405209 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405219 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405239 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405239 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405249 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405259 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405269 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405279 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405279 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405289 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405299 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405309 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405309 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405319 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405329 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405339 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lapack.sh)
20050811134405339 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405349 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134405369 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x3,40000080,0,610e91e4,3,0,0)
20050811134405389 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x3,40000080,0,610e91e4,3,0,0)
20050811134405389 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 5fc
20050811134405389 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 5fc
20050811134405399 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134405419 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134405419 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134405429 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134405439 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22de70,22dec0)
20050811134405449 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134405459 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405479 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134405509 2472 50.60: filelog:
##################################################################
20050811134405509 2472 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134405519 2472 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405540 2472 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405540 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134405550 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134405560 2472 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405590 2472 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405590 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134405600 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134405610 2472 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405630 2472 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405630 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134405640 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134405650 2472 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405670 2472 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405670 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134405680 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134405690 2472 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405710 2472 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405710 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134405720 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134405730 2472 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405740 2472 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405740 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134405750 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134405760 2472 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405770 2472 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405770 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134405780 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134405780 2472 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405800 2472 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405800 2472 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134405800 2472 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134405810 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134405830 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134405830 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134405830 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134405840 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22de70,22dec0)
20050811134405850 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134405860 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134405880 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134405910 4852 50.60: filelog:
##################################################################
20050811134405920 4852 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134405940 4852 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405950 4852 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134405950 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134405960 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134405970 4852 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405990 4852 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134405990 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134406000 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134406010 4852 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406030 4852 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406030 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134406060 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134406070 4852 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406090 4852 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406090 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134406110 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134406130 4852 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406140 4852 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406150 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134406150 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134406160 4852 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406180 4852 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406180 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134406180 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134406190 4852 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406200 4852 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406200 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134406211 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134406221 4852 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406231 4852 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406231 4852 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134406241 4852 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134406271 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406271 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406271 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134406281 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134406291 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406301 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406311 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134406321 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134406331 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406331 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406341 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134406351 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134406361 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406371 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\lilypond-profile.sh)
20050811134406381 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134406391 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134406421 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x4,40000080,0,610e91e4,3,0,0)
20050811134406431 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x4,40000080,0,610e91e4,3,0,0)
20050811134406431 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 624
20050811134406441 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 624
20050811134406451 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134406471 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134406471 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134406481 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134406481 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22de50,22dea0)
20050811134406491 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134406501 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134406531 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134406551 4120 50.60: filelog:
##################################################################
20050811134406551 4120 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134406581 4120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406591 4120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406591 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134406601 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134406611 4120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406631 4120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406631 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134406641 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134406651 4120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406671 4120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406671 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134406681 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134406691 4120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406721 4120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406721 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134406731 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134406741 4120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406761 4120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406761 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134406771 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134406771 4120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406791 4120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406791 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134406791 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134406801 4120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406821 4120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134406821 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134406831 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134406831 4120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406851 4120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134406851 4120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134406851 4120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134406882 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x5,40000080,0,610e91e4,3,0,0)
20050811134406892 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x5,40000080,0,610e91e4,3,0,0)
20050811134406892 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 5f8
20050811134406902 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 5f8
20050811134406912 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134406932 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134406932 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134406932 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134406952 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22db50,22dba0)
20050811134406952 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134406972 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134406992 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134407032  420 50.60: filelog:
##################################################################
20050811134407052  420 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134407062  420 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407082  420 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407082  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134407092  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134407102  420 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407122  420 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407122  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134407132  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134407142  420 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407172  420 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407172  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134407182  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134407192  420 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407212  420 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407212  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134407222  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134407232  420 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407252  420 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407252  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134407252  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134407262  420 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407282  420 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407282  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134407292  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134407292  420 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407312  420 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407312  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134407322  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134407332  420 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407342  420 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407342  420 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134407352  420 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134407372 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x6,40000080,0,610e91e4,3,0,0)
20050811134407382 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x6,40000080,0,610e91e4,3,0,0)
20050811134407382 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 634
20050811134407382 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 634
20050811134407392 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134407412 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134407412 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134407422 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134407432 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22dc50,22dca0)
20050811134407442 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134407452 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134407472 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134407502 5356 50.60: filelog:
##################################################################
20050811134407502 5356 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134407512 5356 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407532 5356 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407532 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134407542 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134407552 5356 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407583 5356 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407583 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134407593 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134407603 5356 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407623 5356 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407623 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134407633 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134407643 5356 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407663 5356 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407663 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134407673 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134407683 5356 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407703 5356 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407703 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134407713 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134407723 5356 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407733 5356 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407733 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134407743 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134407753 5356 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407763 5356 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407763 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134407773 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134407773 5356 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407793 5356 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134407793 5356 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134407803 5356 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134407813 6052 50.60: filelog: 001
CreateFileA(\\.\pipe\cygwin-0x17A4-0x7,40000080,0,610e91e4,3,0,0)
20050811134407823 6052 50.60: filelog: 001
CreateFileW(\\.\pipe\cygwin-0x17A4-0x7,40000080,0,610e91e4,3,0,0)
20050811134407823 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> 638
20050811134407833 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> 638
20050811134407843 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134407863 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134407863 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134407863 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134407873 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22da50,22daa0)
20050811134407883 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134407893 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134407923 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134407953 5764 50.60: filelog:
##################################################################
20050811134407953 5764 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134407983 5764 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407993 5764 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134407993 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134408003 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134408013 5764 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408063 5764 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408063 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134408073 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134408083 5764 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134408103 5764 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134408103 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134408133 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134408143 5764 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408163 5764 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408163 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134408173 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134408183 5764 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134408203 5764 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134408213 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134408213 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134408223 5764 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408233 5764 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408244 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134408254 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134408264 5764 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134408274 5764 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134408274 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134408284 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134408284 5764 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408304 5764 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134408304 5764 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134408314 5764 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134408324 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\mc.sh)
20050811134408324 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\mc.sh)
20050811134408394 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408394 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408404 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\mc.sh)
20050811134408404 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\mc.sh)
20050811134408414 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408424 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408434 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\mc.sh)
20050811134408434 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\mc.sh)
20050811134408444 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408454 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408454 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\mc.sh)
20050811134408464 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\mc.sh)
20050811134408474 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408484 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408504 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408504 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408514 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408524 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408534 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408534 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408544 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408554 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408564 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408564 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408574 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408584 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408594 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408594 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\openssl.sh)
20050811134408604 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408614 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408634 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408634 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408654 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408654 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408664 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408674 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408674 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408684 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408694 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408704 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408704 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408714 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408744 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408744 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\qt3.3.sh)
20050811134408754 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408764 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408774 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408784 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408794 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408804 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408814 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408814 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408824 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408834 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408844 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408854 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408864 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408864 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408874 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408884 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\tetex-profile.sh)
20050811134408894 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134408904 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134408915 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134408925 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409005 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409005 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409015 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409015 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409025 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409035 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409045 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409055 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409065 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409065 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409075 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409085 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-devel.sh)
20050811134409095 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409105 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409125 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409135 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409155 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409155 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409165 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409175 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409185 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409185 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409195 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409205 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409215 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409225 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409235 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409235 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\etc\profile.d\xorg-x11-man-pages.sh)
20050811134409245 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134409255 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134409275 6052 50.60: filelog: 001 GetFileAttributesA(c:\)
20050811134409285 6052 50.60: filelog: 001   GetFileAttributesW(c:\)
20050811134409295 6052 50.60: filelog: 001   GetFileAttributesW() -> 36
20050811134409295 6052 50.60: filelog: 001 GetFileAttributesA() -> 36
20050811134409305 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings)
20050811134409315 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings)
20050811134409325 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409335 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409345 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134409355 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134409355 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409365 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409375 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134409385 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134409395 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409405 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409415 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bashrc)
20050811134409425 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bashrc)
20050811134409435 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409445 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409455 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bashrc.exe)
20050811134409455 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bashrc.exe)
20050811134409465 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409475 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409485 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bashrc.exe.lnk)
20050811134409495 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bashrc.exe.lnk)
20050811134409505 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409515 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409515 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bashrc.lnk)
20050811134409525 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bashrc.lnk)
20050811134409535 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409545 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409555 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134409565 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134409575 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409575 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409585 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_profile)
20050811134409596 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_profile)
20050811134409606 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409616 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409626 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_profile.lnk)
20050811134409636 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_profile.lnk)
20050811134409646 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409646 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409666 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134409666 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134409676 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409686 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409696 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_login)
20050811134409706 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_login)
20050811134409716 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409726 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409736 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_login.lnk)
20050811134409746 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_login.lnk)
20050811134409746 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409756 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409766 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134409776 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134409786 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409796 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409806 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.profile)
20050811134409816 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.profile)
20050811134409826 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409836 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409836 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.profile.lnk)
20050811134409846 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.profile.lnk)
20050811134409856 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409866 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409876 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134409886 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134409896 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134409906 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134409906 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\unknown\llecaroz)
20050811134409916 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\unknown\llecaroz)
20050811134409926 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409936 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409946 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\unknown\llecaroz.exe)
20050811134409956 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\unknown\llecaroz.exe)
20050811134409966 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134409976 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134409986 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and
Settings\llecaroz\unknown\llecaroz.exe.lnk)
20050811134409996 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and
Settings\llecaroz\unknown\llecaroz.exe.lnk)
20050811134410006 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410016 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410016 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\unknown\llecaroz.lnk)
20050811134410026 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\unknown\llecaroz.lnk)
20050811134410046 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410056 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410066 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\unknown)
20050811134410066 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\unknown)
20050811134410076 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410086 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410096 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\unknown.lnk)
20050811134410126 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\unknown.lnk)
20050811134410136 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410146 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410156 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134410166 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134410176 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134410186 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134410196 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134410196 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134410206 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134410216 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134410256 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134410256 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134410277 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134410277 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134410287 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134410297 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134410307 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134410317 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134410357 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.terminfo\c\cygwin)
20050811134410357 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.terminfo\c\cygwin)
20050811134410367 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410377 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410377 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and
Settings\llecaroz\.terminfo\c\cygwin.exe)
20050811134410387 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and
Settings\llecaroz\.terminfo\c\cygwin.exe)
20050811134410397 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410407 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410417 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and
Settings\llecaroz\.terminfo\c\cygwin.exe.lnk)
20050811134410427 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and
Settings\llecaroz\.terminfo\c\cygwin.exe.lnk)
20050811134410437 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410447 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410457 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and
Settings\llecaroz\.terminfo\c\cygwin.lnk)
20050811134410467 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and
Settings\llecaroz\.terminfo\c\cygwin.lnk)
20050811134410477 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410487 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410497 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.terminfo\c)
20050811134410507 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.terminfo\c)
20050811134410517 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410527 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410537 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.terminfo\c.lnk)
20050811134410537 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.terminfo\c.lnk)
20050811134410547 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410557 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410567 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.terminfo)
20050811134410577 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.terminfo)
20050811134410587 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410597 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410607 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.terminfo.lnk)
20050811134410617 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.terminfo.lnk)
20050811134410627 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410637 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410647 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134410657 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134410667 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134410677 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134410687 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\share\terminfo\c\cygwin)
20050811134410687 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\share\terminfo\c\cygwin)
20050811134410777 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134410777 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134410797 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\share\terminfo\c\cygwin)
20050811134410797 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\share\terminfo\c\cygwin)
20050811134410807 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134410817 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134410847 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.inputrc)
20050811134410847 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.inputrc)
20050811134410847 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410867 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410867 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.inputrc.exe)
20050811134410877 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.inputrc.exe)
20050811134410887 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410897 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410897 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.inputrc.exe.lnk)
20050811134410907 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.inputrc.exe.lnk)
20050811134410917 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410927 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410937 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.inputrc.lnk)
20050811134410948 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.inputrc.lnk)
20050811134410958 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134410968 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134410968 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134410978 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134410988 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134410998 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134423286 6052 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz)
20050811134423286 6052 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz)
20050811134423296 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134423296 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134423316 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\qt\3.3\bin\ls)
20050811134423316 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\qt\3.3\bin\ls)
20050811134423476 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423476 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423476 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\qt\3.3\bin\ls.exe)
20050811134423486 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\qt\3.3\bin\ls.exe)
20050811134423496 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423506 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423516 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\qt\3.3\bin\ls.exe.lnk)
20050811134423526 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\qt\3.3\bin\ls.exe.lnk)
20050811134423536 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423546 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423556 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\qt\3.3\bin\ls.lnk)
20050811134423556 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\qt\3.3\bin\ls.lnk)
20050811134423566 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423576 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423576 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\qt\3.3\bin)
20050811134423586 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\qt\3.3\bin)
20050811134423596 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134423606 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134423616 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\bin\ls)
20050811134423616 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\bin\ls)
20050811134423706 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423706 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423706 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\bin\ls.exe)
20050811134423716 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\bin\ls.exe)
20050811134423726 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423736 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423736 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\bin\ls.exe.lnk)
20050811134423746 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\bin\ls.exe.lnk)
20050811134423756 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423766 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423776 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\bin\ls.lnk)
20050811134423776 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\bin\ls.lnk)
20050811134423786 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423796 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423807 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\bin)
20050811134423817 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\bin)
20050811134423817 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134423827 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134423837 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\ls)
20050811134423847 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\ls)
20050811134423907 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423907 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423907 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\ls.exe)
20050811134423917 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\ls.exe)
20050811134423927 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423927 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423937 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\ls.exe.lnk)
20050811134423947 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\ls.exe.lnk)
20050811134423957 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423967 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134423967 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\ls.lnk)
20050811134423977 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\ls.lnk)
20050811134423987 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134423997 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424007 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib)
20050811134424007 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib)
20050811134424017 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134424027 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134424037 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\kde3\ls)
20050811134424037 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\kde3\ls)
20050811134424097 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424097 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424107 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\kde3\ls.exe)
20050811134424107 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\kde3\ls.exe)
20050811134424127 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424137 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424137 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\kde3\ls.exe.lnk)
20050811134424147 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\kde3\ls.exe.lnk)
20050811134424157 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424167 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424187 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\kde3\ls.lnk)
20050811134424187 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\kde3\ls.lnk)
20050811134424197 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424207 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424217 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3.4\lib\kde3)
20050811134424227 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3.4\lib\kde3)
20050811134424237 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134424237 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134424247 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\bin\ls)
20050811134424257 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\bin\ls)
20050811134424287 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424287 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424307 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\bin\ls.exe)
20050811134424307 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\bin\ls.exe)
20050811134424317 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424327 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424337 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\bin\ls.exe.lnk)
20050811134424347 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\bin\ls.exe.lnk)
20050811134424347 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424357 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424367 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\bin\ls.lnk)
20050811134424377 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\bin\ls.lnk)
20050811134424387 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424387 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424397 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\bin)
20050811134424407 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\bin)
20050811134424417 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134424427 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134424437 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\ls)
20050811134424447 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\ls)
20050811134424498 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424498 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424498 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\ls.exe)
20050811134424508 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\ls.exe)
20050811134424518 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424528 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424528 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\ls.exe.lnk)
20050811134424538 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\ls.exe.lnk)
20050811134424548 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424558 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424568 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\ls.lnk)
20050811134424568 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\ls.lnk)
20050811134424578 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424588 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424588 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib)
20050811134424598 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib)
20050811134424608 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134424618 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134424628 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\kde3\ls)
20050811134424628 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\kde3\ls)
20050811134424698 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424698 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424708 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\kde3\ls.exe)
20050811134424718 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\kde3\ls.exe)
20050811134424728 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424728 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424738 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\kde3\ls.exe.lnk)
20050811134424748 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\kde3\ls.exe.lnk)
20050811134424758 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424758 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424768 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\kde3\ls.lnk)
20050811134424778 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\kde3\ls.lnk)
20050811134424788 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424798 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424798 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\kde3\lib\kde3)
20050811134424808 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\kde3\lib\kde3)
20050811134424818 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134424828 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134424838 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls)
20050811134424848 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls)
20050811134424898 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424898 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424908 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls.exe)
20050811134424908 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls.exe)
20050811134424918 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424928 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424938 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls.exe.lnk)
20050811134424948 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls.exe.lnk)
20050811134424948 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424958 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424968 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls.lnk)
20050811134424978 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls.lnk)
20050811134424978 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134424988 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134424998 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin)
20050811134425008 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin)
20050811134425008 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134425018 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134425028 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls)
20050811134425038 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls)
20050811134425038 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425048 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425058 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls.exe)
20050811134425068 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls.exe)
20050811134425068 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425078 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425088 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls.exe.lnk)
20050811134425098 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls.exe.lnk)
20050811134425098 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425128 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425128 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin\ls.lnk)
20050811134425138 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin\ls.lnk)
20050811134425148 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425148 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425159 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\X11R6\bin)
20050811134425189 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\X11R6\bin)
20050811134425189 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134425199 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134425209 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\gnome2\bin\ls)
20050811134425209 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\gnome2\bin\ls)
20050811134425279 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425279 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425279 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\gnome2\bin\ls.exe)
20050811134425289 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\gnome2\bin\ls.exe)
20050811134425299 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425299 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425309 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\gnome2\bin\ls.exe.lnk)
20050811134425319 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\gnome2\bin\ls.exe.lnk)
20050811134425329 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425339 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425339 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\gnome2\bin\ls.lnk)
20050811134425349 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\gnome2\bin\ls.lnk)
20050811134425359 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425369 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425379 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\opt\gnome2\bin)
20050811134425379 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\opt\gnome2\bin)
20050811134425389 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134425399 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134425409 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\local\bin\ls)
20050811134425419 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\local\bin\ls)
20050811134425499 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425499 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425509 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\local\bin\ls.exe)
20050811134425509 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\local\bin\ls.exe)
20050811134425519 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425529 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425539 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\local\bin\ls.exe.lnk)
20050811134425549 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\local\bin\ls.exe.lnk)
20050811134425549 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425559 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425569 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\local\bin\ls.lnk)
20050811134425579 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\local\bin\ls.lnk)
20050811134425579 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425589 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425599 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\usr\local\bin)
20050811134425609 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\usr\local\bin)
20050811134425609 6052 50.60: filelog: 001   GetFileAttributesW() -> 10
20050811134425619 6052 50.60: filelog: 001 GetFileAttributesA() -> 10
20050811134425629 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls)
20050811134425639 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls)
20050811134425639 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425649 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425659 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls.exe)
20050811134425669 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls.exe)
20050811134425699 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134425699 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134425699 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls)
20050811134425709 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls)
20050811134425719 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425729 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425729 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls.exe)
20050811134425739 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls.exe)
20050811134425749 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134425759 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134425759 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls)
20050811134425769 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls)
20050811134425779 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425779 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425789 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls.exe)
20050811134425799 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls.exe)
20050811134425799 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134425809 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134425819 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls)
20050811134425819 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls)
20050811134425830 6052 50.60: filelog: 001   GetFileAttributesW() ->
ffffffff
20050811134425840 6052 50.60: filelog: 001 GetFileAttributesA() -> ffffffff
20050811134425840 6052 50.60: filelog: 001
GetFileAttributesA(c:\cygwin\bin\ls.exe)
20050811134425850 6052 50.60: filelog: 001
GetFileAttributesW(c:\cygwin\bin\ls.exe)
20050811134425860 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134425860 6052 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134425870 6052 50.60: filelog: 001
CreateFileA(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134425890 6052 50.60: filelog: 001
CreateFileW(CONOUT$,40000000,2,610e91d8,3,80,0)
20050811134425890 6052 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134425890 6052 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134425900 6052 50.60: filelog: 001
CreateProcessA(C:\cygwin\bin\bash.exe,C:\cygwin\bin\bash.exe,610e91d8,610e91d8,1,20,0,<NULL>,22e970,22e9c0)
20050811134425910 6052 50.60: filelog: 001
GetFileAttributesW(C:\cygwin\bin\bash.exe)
20050811134425920 6052 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134425940 6052 50.60: filelog: 001 CreateProcessA(,,,,,,,,,) -> 1
20050811134425970 5120 50.60: filelog:
##################################################################
20050811134425970 5120 50.60: filelog: ### C:\cygwin\bin\bash.exe
20050811134425980 5120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426010 5120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426010 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> b
20050811134426020 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> b
20050811134426030 5120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426050 5120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426050 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1f
20050811134426060 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1f
20050811134426070 5120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426090 5120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426090 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> f
20050811134426100 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> f
20050811134426110 5120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426150 5120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426150 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 13
20050811134426160 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 13
20050811134426170 5120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426180 5120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426180 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 3
20050811134426190 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 3
20050811134426210 5120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426220 5120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426220 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 17
20050811134426230 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 17
20050811134426240 5120 50.60: filelog: 001
CreateFileA(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426250 5120 50.60: filelog: 001
CreateFileW(CONIN$,c0000000,3,610e91e4,3,0,0)
20050811134426250 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 7
20050811134426260 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 7
20050811134426270 5120 50.60: filelog: 001
CreateFileA(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426280 5120 50.60: filelog: 001
CreateFileW(CONOUT$,c0000000,3,610e91e4,3,0,0)
20050811134426280 5120 50.60: filelog: 001   CreateFileW(,,,,,,) -> 1b
20050811134426290 5120 50.60: filelog: 001 CreateFileA(,,,,,,) -> 1b
20050811134426300 5120 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426300 5120 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426310 5120 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134426320 5120 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134426330 5120 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426340 5120 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426350 5120 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134426350 5120 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134426380 5120 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426390 5120 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426400 5120 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134426410 5120 50.60: filelog: 001 GetFileAttributesA() -> 20
20050811134426420 5120 50.60: filelog: 001
GetFileAttributesA(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426430 5120 50.60: filelog: 001
GetFileAttributesW(c:\Documents and Settings\llecaroz\.bash_history)
20050811134426430 5120 50.60: filelog: 001   GetFileAttributesW() -> 20
20050811134426440 5120 50.60: filelog: 001 GetFileAttributesA() -> 20


******************************* End Truss debugging log corresponding to the previous example

As you will see, internal Win32 system calls of CygWin have been
correctly hooked,
Bash appears to work correctly still it does not fork.... It searchs for
"ls" alias but no CreateProcess trace appears because it crash just before.
Looking to the code of Cygwin, If I am correct, this is because Cygwin
does not the msvcrt microsoft library where spawn*() methods have been
written, but its proper ones in spawn.cc. I suppose (I am only
supposing), this is due by an imcompatiblity between the
fixup_before_exec() called in your spawn & Microsoft Win32 code.

I am really ashamed not to be able to "truss" CygWin tools or standard
Win32 programs forked by Cygwin tools (like for exemple make spawning bash).
I have also attached the cygcheck.out in this mail,
I hope, I have given you all the needed info. It will be really great to
be able to make cygwin fork & spawn emulation compatible with Win32
system Tools.
At a time, I have also supposed an incompatibility between
longjmp/setjmp & GetThreadContext/SetThreadContext...

Thank's in advance for all the help you will be able to provide me. I
don't have more time & skills to investigate in CygWin code,  but if you
need more info don't hesitate to mail me.
Having (if possible ;) ) a patch & a standard modification in cygwin to
allow this type of programming will be really great !
Louis


Cygwin Configuration Diagnostics
Current System Time: Thu Aug 11 12:16:37 2005

Windows XP Professional Ver 5.1 Build 2600 Service Pack 2

Path:	c:\cygwin\opt\qt\3.3\bin
	c:\cygwin\opt\kde3.4\bin
	c:\cygwin\opt\kde3.4\lib
	c:\cygwin\opt\kde3.4\lib\kde3
	c:\cygwin\opt\kde3\bin
	c:\cygwin\opt\kde3\lib
	c:\cygwin\opt\kde3\lib\kde3
	c:\cygwin\usr\X11R6\bin
	c:\cygwin\opt\gnome2\bin
	c:\cygwin\usr\local\bin
	c:\cygwin\bin
	c:\cygwin\bin
	c:\substitutes
	c:\ant\bin
	c:\Program Files\Common Files\Symbian\Tools
	d:\program files\imagemagick-6.2.3-q8
	c:\Program Files\ThinkPad\Utilities
	d:\Perl\bin\
	d:\gdwin32
	d:\program files\imagemagick-5.5.7-q8
	c:\Program Files\WinZip
	c:\jdk1.3.1\bin
	c:\Perl\bin\
	c:\BORCS
	c:\oracle\ora81\bin
	c:\WINDOWS\system32
	c:\WINDOWS
	c:\WINDOWS\System32\Wbem
	c:\Program Files\Rational\common
	c:\Program Files\Rational\Purify
	c:\Program Files\Rational\Purify\cache
	c:\PROGRA~1\Tcl\bin
	d:\Program Files\Microsoft SDK\Bin\
	d:\Program Files\Microsoft SDK\Bin\WinNT\
	c:\IBMTOOLS\Python22
	d:\MySQL\MySQL Server 4.1\bin
	d:\Program Files\cvsnt
	c:\IBMTOOLS\Python22
	d:\SFU\common\
	c:\Program Files\ThinkPad\Utilities
	c:\Program Files\Common Files\Symbian\Tools
	d:\Perl\bin\
	d:\gdwin32
	d:\program files\imagemagick-5.5.7-q8
	c:\Program Files\WinZip
	c:\jdk1.3.1\bin
	c:\Perl\bin\
	c:\BORCS
	c:\oracle\ora81\bin
	c:\WINDOWS\system32
	c:\WINDOWS
	c:\WINDOWS\System32\Wbem
	c:\Program Files\Rational\common
	c:\Program Files\Rational\Purify
	c:\Program Files\Rational\Purify\cache
	c:\PROGRA~1\Tcl\bin
	d:\Program Files\Microsoft SDK\Bin\
	d:\Program Files\Microsoft SDK\Bin\WinNT\
	c:\IBMTOOLS\Python22
	d:\MySQL\MySQL Server 4.1\bin
	d:\Program Files\cvsnt
	d:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT
	d:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin
	d:\Program Files\Microsoft Visual Studio\Common\Tools
	d:\Program Files\Microsoft Visual Studio\VC98\bin
	e:\marion\orion\mercury
	x:\Others\Packsign
	c:\bin
	d:\Program Files\UltraEdit
	c:\cygwin\lib\lapack

Output from c:\cygwin\bin\id.exe (nontsec)
UID: 400(llecaroz)  GID: 401(mkpasswd)
0(root)             544(Administrators) 545(Users)          401(mkpasswd)

Output from c:\cygwin\bin\id.exe (ntsec)
UID: 400(llecaroz)  GID: 401(mkpasswd)
0(root)             544(Administrators) 545(Users)          401(mkpasswd)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = `llecaroz'
LD_LIBRARY_PATH = `/usr/lib:/usr/X11R6/lib'
TCL_LIBRARY = `C:\IBMTOOLS\Python22\tcl\tcl8.4'
PWD = `/cygdrive/c/Documents and Settings/llecaroz'
CYGWIN = `server XWin.exe'
HOME = `/cygdrive/c/Documents and Settings/llecaroz'
MAKE_MODE = `unix'

PYTHONCASEOK = `1'
MSSDK = `D:\Program Files\Microsoft SDK\.'
HOMEPATH = `\Documents and Settings\llecaroz'
MANPATH = `:/usr/ssl/man:/opt/qt/3.3/doc/man:/usr/X11R6/man'
BEANJSDKDIR = `X:\X\Others\jswdk-1.0.1'
APPDATA = `C:\Documents and Settings\llecaroz\Application Data'
APACHESSL1327DIR = `X:\X\Others\Apache1327SSL'
XKEYSYMDB = `/usr/X11R6/lib/X11/XKeysymDB'
VISIBROKERCDIR = `X:\X\Others\Visibroker3.33-C6P4'
REFERENCEDIR = `X:\X\integrationreference'
MSTOOLS = `D:\Program Files\Microsoft SDK\.'
TERM = `cygwin'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 11 Stepping 1, GenuineIntel'
WINDIR = `C:\WINDOWS'
DOCDIR = `c:\bo98\RcsDoc'
DEVSUITEDIR = `c:\bo98\Devsuite'
TEXDOCVIEW_txt = `cygstart %s'
TEXDOCVIEW_dvi = `cygstart %s'
JDKDIR = `d:\j2sdk1.4.1_06'
APACHESSL139DIR = `X:\X\Others\Apache139SSL'
APACHESSL1312DIR = `X:\X\Others\Apache1312SSL'
KDEHOME = `/opt/kde3.4/home'
TK_LIBRARY = `C:\IBMTOOLS\Python22\tcl\tk8.4'
MSDASDK_HOME_PATH = `X:\X\Others\Msdacsdk2.5'
QTDIR = `/opt/qt/3.3'
OLDPWD = `/usr/bin'
USERDOMAIN = `INTL'
OS = `Windows_NT'
ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
XAPPLRESDIR = `/usr/X11R6/lib/X11/app-defaults'
XCMSDB = `/usr/X11R6/lib/X11/Xcms.txt'
!:: = `::\'
TEMP = `/cygdrive/c/DOCUME~1/llecaroz/LOCALS~1/Temp'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
BISON_SIMPLE = `X:\X\Others\Bison1.24\bison.simple'
GDK_USE_XFT = `0'
OLAPATWORKDIR = `X:\X\Olap@Work\SP6\release-1'
BEANVISIBROKERJAVADIR = `X:\X\Others\Visibroker3.4'
BEANCOLLECTIONDIR = `X:\X\Others\1.1collections'
XNLSPATH = `/usr/X11R6/lib/X11/locale'
SFUDIR = `D:\SFU\'
ROOTDIR = `c:\bo98'
LIB = `D:\Program Files\Microsoft Visual Studio\VC98\mfc\lib;D:\Program Files\Microsoft Visual Studio\VC98\lib;D:\Program Files\Microsoft SDK\Lib\.;c:\program files\devstudio\VC\LIB;c:\program files\devstudio\VC\MFC\lib'
BISONDIR = `X:\X\Others\Bison1.24'
KDEDIR = `/opt/kde3.4'
USERNAME = `llecaroz'
WF_RESOURCES = `C:\oracle\ora81\WF\RES\WFUS.RES'
VISIBROKERJAVADIR = `X:\X\Others\Visibroker3.31'
RRU = `C:\Program Files\IBM\IBM Rapid Restore Ultra\'
DEVSUITEJDKDIR = `X:\X\Others\jdk1.3.1.02'
FLEXDIR = `X:\X\Others\flex2.4.7'
TEXDOCVIEW_pdf = `cygstart %s'
PROCESSOR_LEVEL = `6'
APACHEDIR = `X:\X\Others\Apache136'
INTERIX_ROOT = `/dev/fs/D/SFU/'
OSPACE_VERSION = `2.1-vc5.0'
JDK508DIR = `X:\X\Others\jdk1.3.1.02'
ROOT3DIR = `X:\X\Others'
OSPACE21_HOME_PATH = `X:\X\Others\ToolKit2.1'
FP_NO_HOST_CHECK = `NO'
SYSTEMDRIVE = `C:'
IFCDIR = `X:\X\Others\ifc1.0'
JAVA_HOME = `D:\j2sdk1.4.1_06'
EDITOR = `vi'
BEANJAVADIR = `X:\X\Others\jdk1.1.8'
TEXDOCVIEW_html = `cygstart %s'
USERPROFILE = `C:\Documents and Settings\llecaroz'
QMAKESPEC = `cygwin-g++'
JREDIR = `D:\j2sdk1.4.1_06\jre\lib'
PS1 = `\[\033]0;\w\007
\033[32m\]\u@\h \[\033[33m\w\033[0m\]
$ '
NSAPIDIR = `X:\X\Others\NSAPI'
LOGONSERVER = `\\DC-LV5'
CLEARCASE_PRIMARY_GROUP = `PRODUCT'
RCSDIR = `C:\BORCS'
PROCESSOR_ARCHITECTURE = `x86'
DARDIR = `c:\bo98\Darwin'
!C: = `C:\cygwin\bin'
OSPACE_HOME_PATH = `X:\X\Others\ToolKit2.1'
SHLVL = `1'
PURIFY = `C:\Program Files\Rational\Purify'
PG32DIR = `X:\X\Others\pg32-2.35.3e'
PACKSIGNDIR = `X:\X\Others\packsign'
BUILDDIR = `\\arles\Build-INTL\Samba\SP5'
USERDNSDOMAIN = `intl.businessobjects.com'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.pyo;.pyc;.py;.pyw'
INTERIX_ROOT_WIN = `D:\SFU\'
HOMEDRIVE = `C:'
SFUDIR_INTERIX = `/dev/fs/D/SFU/'
HTTP_PROXY = `http://http-cache.businessobjects.com:3128 '
APACHESSLDIR = `X:\X\Others\Apache1319SSL'
PROMPT = `$P$G'
INETSDK = `D:\Program Files\Microsoft SDK\.'
COMSPEC = `C:\WINDOWS\system32\cmd.exe'
VTESTDIR = `\\bosphore\VTest'
UNIXDIR = `\\libreville.product.businessobjects.com\partage'
TMP = `/cygdrive/c/DOCUME~1/llecaroz/LOCALS~1/Temp'
SYSTEMROOT = `C:\WINDOWS'
PYTHONPATH = `C:\IBMTOOLS\utils\support;C:\IBMTOOLS\utils\logger'
IBMSHARE = `C:\IBMSHARE'
PROCESSOR_REVISION = `0b01'
BASEMAKE = `D:\Program Files\Microsoft SDK\Include\BKOffice.Mak'
MSDEVDIR = `D:\Program Files\Microsoft Visual Studio\Common\MSDev98;d:\Program Files\DevStudio\SharedIDE'
PKG_CONFIG_PATH = `/usr/X11R6/lib/pkgconfig'
TOOLKITDIR = `X:\X\Others\ToolKit2.1'
TEXDOCVIEW_ps = `cygstart %s'
INTERIX_COMPILERDIR = `/dev/fs/D/Program Files/Microsoft Visual Studio'
PROGRAMFILES = `C:\Program Files'
OPENNT_ROOT = `/dev/fs/D/SFU/'
BKOFFICE = `D:\Program Files\Microsoft SDK\.'
TEXMF = `{/usr/share/lilypond/2.4.6,{!!/cygdrive/c/Documents and Settings/llecaroz/.texmf/config,!!/cygdrive/c/Documents and Settings/llecaroz/.texmf/var,/cygdrive/c/Documents and Settings/llecaroz/texmf,!!/usr/local/share/texmf,!!/var/lib/texmf,!!/usr/share/texmf}}'
DISPLAY = `127.0.0.1:0'
NUMBER_OF_PROCESSORS = `1'
ORIONDIR = `c:\bo98\Orion'
INCLUDE = `D:\Program Files\Microsoft Visual Studio\VC98\atl\include;D:\Program Files\Microsoft Visual Studio\VC98\mfc\include;D:\Program Files\Microsoft Visual Studio\VC98\include;D:\Program Files\Microsoft SDK\Include\.;c:\program files\devstudio\VC\INCLUDE;c:\program files\devstudio\VC\MFC\include'
CURRENTDIR = `c:\bo98\integration'
SESSIONNAME = `Console'
BODWNDIR = `c:\bo98'
COMPUTERNAME = `VAUDREUIL'
NPSDKDIR = `X:\X\Others\PluginSDK'
INETSDKDIR = `X:\X\Others\INetSDK'
_ = `/usr/bin/cygcheck'
POSIXLY_CORRECT = `1'

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\Program Options
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
  (default) = `\\.\tape1:'
  unix = `/dev/st1'
  fbinary = 0x00000000
  fsilent = 0x00000001
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
  (default) = `\\.\tape0:'
  unix = `/dev/st0'
  fbinary = 0x00000000
  fsilent = 0x00000001
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
  (default) = `\\.\b:'
  unix = `/dev/fd1'
  fbinary = 0x00000000
  fsilent = 0x00000001
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
  (default) = `\\.\a:'
  unix = `/dev/fd0'
  fbinary = 0x00000000
  fsilent = 0x00000001
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
  (default) = `C:'
  unix = `/'
  fbinary = 0x00000000
  fsilent = 0x00000000
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\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\/cygdrive/c
  (default) = `c:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/cygdrive/d
  (default) = `d:'
  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\mounts v2\/usr/X11R6/lib/X11/fonts
  (default) = `C:\cygwin\usr\X11R6\lib\X11\fonts'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\05
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\06
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\07
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\08
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\09
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0E
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0F
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\10
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\11
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\12
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\13
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\14
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\15
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\16
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\17
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\18
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\19
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1D

c:  hd  NTFS     20000Mb  83% CP CS UN PA FC     
d:  hd  NTFS     25780Mb  32% CP CS UN PA FC     Data
e:  cd  CDFS       346Mb 100%    CS UN           Mon disque
x:  net NTFS       200Mb   0% CP CS UN PA FC     Common Files

.                                  /cygdrive                 user    binmode,cygdrive
c:\cygwin                          /                         system  binmode
c:                                 /cygdrive/c               system  binmode
d:                                 /cygdrive/d               system  binmode
c:\cygwin/bin                      /usr/bin                  system  binmode
c:\cygwin/lib                      /usr/lib                  system  binmode
C:\cygwin\usr\X11R6\lib\X11\fonts  /usr/X11R6/lib/X11/fonts  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: d:\SFU\common\cat.exe
Warning: c:\cygwin\bin\cat.exe hides d:\SFU\common\cat.exe
Found: c:\cygwin\bin\cp.exe
Found: d:\SFU\common\cp.exe
Warning: c:\cygwin\bin\cp.exe hides d:\SFU\common\cp.exe
Found: c:\cygwin\bin\cpp.exe
Found: c:\cygwin\bin\find.exe
Found: d:\SFU\common\find.exe
Warning: c:\cygwin\bin\find.exe hides d:\SFU\common\find.exe
Found: c:\cygwin\bin\gcc.exe
Found: c:\cygwin\bin\gdb.exe
Found: c:\cygwin\bin\grep.exe
Found: d:\SFU\common\grep.exe
Warning: c:\cygwin\bin\grep.exe hides d:\SFU\common\grep.exe
Found: c:\cygwin\bin\ld.exe
Found: c:\cygwin\bin\ls.exe
Found: d:\SFU\common\ls.exe
Warning: c:\cygwin\bin\ls.exe hides d:\SFU\common\ls.exe
Found: c:\cygwin\bin\make.exe
Found: c:\cygwin\bin\mv.exe
Found: d:\SFU\common\mv.exe
Warning: c:\cygwin\bin\mv.exe hides d:\SFU\common\mv.exe
Found: c:\cygwin\bin\rm.exe
Found: d:\SFU\common\rm.exe
Warning: c:\cygwin\bin\rm.exe hides d:\SFU\common\rm.exe
Found: c:\cygwin\bin\sed.exe
Found: d:\SFU\common\sed.exe
Warning: c:\cygwin\bin\sed.exe hides d:\SFU\common\sed.exe
Found: c:\cygwin\bin\sh.exe
Found: c:\cygwin\bin\tar.exe

  395k 2005/05/05 c:\cygwin\opt\qt\3.3\bin\cygkdefx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdefx-1.dll" v0.0 ts=2005/2/14 0:17
 5925k 2005/05/05 c:\cygwin\opt\qt\3.3\bin\cygqt-mt-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygqt-mt-3.dll" v0.0 ts=2005/2/14 0:49
  199k 2005/05/05 c:\cygwin\opt\qt\3.3\bin\cygqui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygqui-1.dll" v0.0 ts=2005/2/13 21:26
  374k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygakregatorprivate.dll - os=4.0 img=1.0 sys=4.0
                  "cygakregatorprivate.dll" v0.0 ts=2005/6/6 9:14
  188k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygDCOP-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygDCOP-4.dll" v0.0 ts=2005/5/30 18:15
  425k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cyggpgme++-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpgme++-0.dll" v0.0 ts=2005/5/28 19:17
  768k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc-1.dll" v0.0 ts=2005/5/30 19:03
  221k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabckolab-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabckolab-0.dll" v0.0 ts=2005/6/6 8:37
   62k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_dir-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_dir-1.dll" v0.0 ts=2005/5/30 19:33
   65k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_file-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_file-1.dll" v0.0 ts=2005/5/30 19:33
   61k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_groupdav-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_groupdav-1.dll" v0.0 ts=2005/6/6 9:04
 1653k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_groupwise-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_groupwise-1.dll" v0.0 ts=2005/6/6 8:41
  183k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_ldapkio-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_ldapkio-1.dll" v0.0 ts=2005/5/30 19:34
   55k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_net-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_net-1.dll" v0.0 ts=2005/5/30 19:33
  166k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_newexchange-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_newexchange-1.dll" v0.0 ts=2005/6/6 8:35
   71k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_slox-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_slox-0.dll" v0.0 ts=2005/6/6 8:43
  235k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabc_xmlrpc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc_xmlrpc-1.dll" v0.0 ts=2005/6/6 8:38
   55k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkabinterfaces-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabinterfaces-1.dll" v0.0 ts=2005/5/27 16:43
 1076k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkaddressbook-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddressbook-0.dll" v0.0 ts=2005/6/6 9:15
  214k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkasbar-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkasbar-1.dll" v0.0 ts=2005/5/31 8:02
  685k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkateinterfaces-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkateinterfaces-0.dll" v0.0 ts=2005/5/31 0:45
   99k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkatepartinterfaces-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkatepartinterfaces-0.dll" v0.0 ts=2005/5/30 19:35
   42k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkateutils-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkateutils-0.dll" v0.0 ts=2005/5/31 0:30
 1162k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal-2.dll" v0.0 ts=2005/6/6 8:21
  216k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcalkolab-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcalkolab-0.dll" v0.0 ts=2005/6/6 8:38
  152k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_blogging-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_blogging-1.dll" v0.0 ts=2005/6/6 9:03
   63k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_groupdav-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_groupdav-1.dll" v0.0 ts=2005/6/6 9:04
 1638k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_groupwise-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_groupwise-1.dll" v0.0 ts=2005/6/6 8:40
  174k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_newexchange-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_newexchange-1.dll" v0.0 ts=2005/6/6 8:36
   76k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_resourcefeatureplan-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_resourcefeatureplan-1.dll" v0.0 ts=2005/6/6 9:06
   62k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_resourceremote-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_resourceremote-1.dll" v0.0 ts=2005/6/6 8:27
  130k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_slox-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_slox-0.dll" v0.0 ts=2005/6/6 8:42
  198k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkcal_xmlrpc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcal_xmlrpc-1.dll" v0.0 ts=2005/6/6 8:39
   89k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdecorations-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdecorations-1.dll" v0.0 ts=2005/5/31 0:43
 2237k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdecore-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdecore-4.dll" v0.0 ts=2005/5/30 18:36
    6k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdefakes-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdefakes-4.dll" v0.0 ts=2005/5/30 19:28
  367k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdefx-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdefx-4.dll" v0.0 ts=2005/5/30 18:15
   51k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_appletproxy.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_appletproxy.dll" v0.0 ts=2005/5/31 7:31
   90k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_dcopserver.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_dcopserver.dll" v0.0 ts=2005/5/30 19:36
   44k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_extensionproxy.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_extensionproxy.dll" v0.0 ts=2005/5/31 7:32
   73k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kaccess.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kaccess.dll" v0.0 ts=2005/5/31 7:53
   22k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kaddprinterwizard.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kaddprinterwizard.dll" v0.0 ts=2005/5/30 19:32
   35k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kate.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kate.dll" v0.0 ts=2005/5/31 7:57
  207k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kbuildsycoca.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kbuildsycoca.dll" v0.0 ts=2005/5/30 19:30
   35k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kcminit.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kcminit.dll" v0.0 ts=2005/5/31 7:58
  259k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kcmshell.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kcmshell.dll" v0.0 ts=2005/5/30 19:36
   63k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kconf_update.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kconf_update.dll" v0.0 ts=2005/5/30 19:30
  257k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kcontrol.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kcontrol.dll" v0.0 ts=2005/5/31 7:57
  189k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kcontroledit.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kcontroledit.dll" v0.0 ts=2005/5/31 7:55
   24k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kcookiejar.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kcookiejar.dll" v0.0 ts=2005/5/30 19:31
  133k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kded.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kded.dll" v0.0 ts=2005/5/30 19:28
  560k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kdesktop.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kdesktop.dll" v0.0 ts=2005/5/31 8:03
  355k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_keditbookmarks.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_keditbookmarks.dll" v0.0 ts=2005/6/5 21:24
  105k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kfmclient.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kfmclient.dll" v0.0 ts=2005/5/31 7:31
  490k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_khelpcenter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_khelpcenter.dll" v0.0 ts=2005/5/31 7:55
  247k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_khotkeys.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_khotkeys.dll" v0.0 ts=2005/5/31 7:58
  724k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kicker.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kicker.dll" v0.0 ts=2005/5/31 7:43
   36k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kio_http_cache_cleaner.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kio_http_cache_cleaner.dll" v0.0 ts=2005/5/30 19:31
  176k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kio_uiserver.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kio_uiserver.dll" v0.0 ts=2005/5/30 19:37
   51k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kjobviewer.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kjobviewer.dll" v0.0 ts=2005/5/31 7:30
  116k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_klauncher.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_klauncher.dll" v0.0 ts=2005/5/30 19:32
  212k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_klipper.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_klipper.dll" v0.0 ts=2005/5/31 7:32
  194k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kmenuedit.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kmenuedit.dll" v0.0 ts=2005/5/31 7:55
  964k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_konqueror.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_konqueror.dll" v0.0 ts=2005/5/31 8:00
  748k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_konsole.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_konsole.dll" v0.0 ts=2005/5/31 7:59
   58k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kprinter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kprinter.dll" v0.0 ts=2005/5/31 7:30
  178k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_ksmserver.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_ksmserver.dll" v0.0 ts=2005/5/31 8:01
  544k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kwin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kwin.dll" v0.0 ts=2005/5/31 7:56
  245k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kwin_rules_dialog.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kwin_rules_dialog.dll" v0.0 ts=2005/5/31 7:56
   91k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kwrite.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kwrite.dll" v0.0 ts=2005/5/31 7:54
  120k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeinit_kxkb.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeinit_kxkb.dll" v0.0 ts=2005/5/31 8:00
 1489k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdepim-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdepim-1.dll" v0.0 ts=2005/6/6 8:23
  806k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeprint-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint-4.dll" v0.0 ts=2005/5/30 19:02
  752k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeprint_management-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint_management-4.dll" v0.0 ts=2005/5/30 19:20
   34k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdesasl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdesasl-1.dll" v0.0 ts=2005/5/30 20:04
  137k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdesu-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdesu-4.dll" v0.0 ts=2005/5/30 18:48
 2610k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdeui-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeui-4.dll" v0.0 ts=2005/5/30 18:47
   98k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkdnssd-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdnssd-1.dll" v0.0 ts=2005/5/30 20:30
   59k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkfontinst-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkfontinst-0.dll" v0.0 ts=2005/5/31 8:03
  141k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkgantt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkgantt-0.dll" v0.0 ts=2005/5/27 23:57
  387k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkgroupwarebase-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkgroupwarebase-0.dll" v0.0 ts=2005/6/6 8:25
   45k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkgroupwaredav-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkgroupwaredav-0.dll" v0.0 ts=2005/6/6 8:28
   51k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkholidays-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkholidays-1.dll" v0.0 ts=2005/5/28 19:38
 3741k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkhtml-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkhtml-4.dll" v0.0 ts=2005/5/30 19:37
  164k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkickermain-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkickermain-1.dll" v0.0 ts=2005/5/31 0:30
   85k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkimproxy-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkimproxy-0.dll" v0.0 ts=2005/5/30 20:30
 3372k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkio-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkio-4.dll" v0.0 ts=2005/5/30 18:50
  216k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkitchensyncui-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkitchensyncui-0.dll" v0.0 ts=2005/6/6 9:13
    5k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkjava-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkjava-1.dll" v0.0 ts=2005/5/11 18:43
  414k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkjs-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkjs-1.dll" v0.0 ts=2005/5/30 19:01
  854k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkleopatra-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkleopatra-0.dll" v0.0 ts=2005/5/28 19:28
 5382k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkmailprivate.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmailprivate.dll" v0.0 ts=2005/6/6 9:19
  669k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkmdi-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmdi-1.dll" v0.0 ts=2005/5/30 20:21
  162k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkmdi2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmdi2-1.dll" v0.0 ts=2005/5/30 20:21
   55k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkmediaplayer-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmediaplayer-0.dll" v0.0 ts=2005/5/30 20:29
   91k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkmid-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmid-0.dll" v0.0 ts=2005/5/30 20:13
  272k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkmime-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmime-2.dll" v0.0 ts=2005/5/28 19:38
  250k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygknewstuff-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygknewstuff-1.dll" v0.0 ts=2005/5/30 19:31
 1385k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygknodecommon.dll - os=4.0 img=1.0 sys=4.0
                  "cygknodecommon.dll" v0.0 ts=2005/6/6 9:12
  166k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygknoteskolab-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygknoteskolab-0.dll" v0.0 ts=2005/6/6 8:37
  168k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygknotes_xmlrpc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygknotes_xmlrpc-1.dll" v0.0 ts=2005/6/6 8:40
   33k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkntlm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkntlm-0.dll" v0.0 ts=2005/5/30 19:29
   27k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkocorehelper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkocorehelper-1.dll" v0.0 ts=2005/5/27 16:52
  109k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkode-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkode-1.dll" v0.0 ts=2005/5/27 16:25
   75k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkonnector-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonnector-0.dll" v0.0 ts=2005/6/6 8:34
  733k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkonq-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonq-4.dll" v0.0 ts=2005/5/31 0:30
   29k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkonqsidebarplugin-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonqsidebarplugin-1.dll" v0.0 ts=2005/5/31 0:43
   35k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkontact-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact-1.dll" v0.0 ts=2005/6/6 9:15
 2047k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkorganizer-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorganizer-1.dll" v0.0 ts=2005/6/6 9:08
   36k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkorganizer_calendar-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorganizer_calendar-1.dll" v0.0 ts=2005/6/6 8:35
   87k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkorganizer_eventviewer-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorganizer_eventviewer-1.dll" v0.0 ts=2005/6/6 8:43
  172k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkorg_stdprinting-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorg_stdprinting-1.dll" v0.0 ts=2005/6/6 8:33
  273k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkparts-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygkparts-2.dll" v0.0 ts=2005/5/30 18:53
  316k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkpgp-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpgp-2.dll" v0.0 ts=2005/5/28 19:39
  238k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkpimexchange-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpimexchange-1.dll" v0.0 ts=2005/6/6 9:02
  159k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkpimidentities-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpimidentities-1.dll" v0.0 ts=2005/6/6 8:42
   84k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkpinterfaces-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpinterfaces-1.dll" v0.0 ts=2005/6/6 9:02
  165k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkresources-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkresources-1.dll" v0.0 ts=2005/5/30 18:53
   43k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkscript-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkscript-0.dll" v0.0 ts=2005/5/30 19:35
  139k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygksgrd-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygksgrd-1.dll" v0.0 ts=2005/5/31 0:42
   65k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygksieve-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygksieve-0.dll" v0.0 ts=2005/5/28 19:37
   58k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkslox-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkslox-0.dll" v0.0 ts=2005/6/6 8:27
    5k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkspell-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkspell-4.dll" v0.0 ts=2005/5/30 19:53
  161k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkspell2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkspell2-1.dll" v0.0 ts=2005/5/30 19:34
   59k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygksplashthemes-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygksplashthemes-0.dll" v0.0 ts=2005/5/31 0:43
   70k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygksync-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync-1.dll" v0.0 ts=2005/6/6 9:01
  202k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygksync2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync2-0.dll" v0.0 ts=2005/6/6 8:26
  191k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygktexteditor-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygktexteditor-0.dll" v0.0 ts=2005/5/30 19:22
  104k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygktnef-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygktnef-1.dll" v0.0 ts=2005/5/28 19:15
  245k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkunittest-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkunittest-0.dll" v0.0 ts=2005/5/30 19:35
  425k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkutils-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkutils-1.dll" v0.0 ts=2005/5/30 19:02
   78k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkwalletbackend-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkwalletbackend-1.dll" v0.0 ts=2005/5/30 19:29
   77k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygkwalletclient-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkwalletclient-1.dll" v0.0 ts=2005/5/30 18:48
  390k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygmimelib-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmimelib-1.dll" v0.0 ts=2005/5/28 19:39
  149k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygmultisynk-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygmultisynk-0.dll" v0.0 ts=2005/6/6 9:05
   35k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygqgpgme-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygqgpgme-0.dll" v0.0 ts=2005/5/28 19:22
  177k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygtaskbar-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygtaskbar-1.dll" v0.0 ts=2005/5/31 8:02
  123k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygtaskmanager-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygtaskmanager-1.dll" v0.0 ts=2005/5/31 0:44
  133k 2005/06/06 c:\cygwin\opt\kde3.4\bin\cygvcard-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvcard-0.dll" v0.0 ts=2005/5/30 18:53
   67k 2005/06/06 c:\cygwin\opt\kde3.4\lib\cygkabckonnector.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabckonnector.dll" v0.0 ts=2005/6/6 9:44
   67k 2005/06/06 c:\cygwin\opt\kde3.4\lib\cygkcalkonnector.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcalkonnector.dll" v0.0 ts=2005/6/6 9:45
   91k 2005/06/06 c:\cygwin\opt\kde3.4\lib\cyglocalkonnector.dll - os=4.0 img=1.0 sys=4.0
                  "cyglocalkonnector.dll" v0.0 ts=2005/6/6 9:43
  284k 2005/06/06 c:\cygwin\opt\kde3.4\lib\cygqtopiakonnector.dll - os=4.0 img=1.0 sys=4.0
                  "cygqtopiakonnector.dll" v0.0 ts=2005/6/6 10:14
   84k 2005/06/06 c:\cygwin\opt\kde3.4\lib\cygremotekonnector.dll - os=4.0 img=1.0 sys=4.0
                  "cygremotekonnector.dll" v0.0 ts=2005/6/6 9:43
  530k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygakregatorpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygakregatorpart.dll" v0.0 ts=2005/6/6 10:30
  345k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygakregator_mk4storage_plugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygakregator_mk4storage_plugin.dll" v0.0 ts=2005/6/6 10:34
   36k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_bookmark_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_bookmark_xxport.dll" v0.0 ts=2005/6/6 9:39
  135k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_cardview.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_cardview.dll" v0.0 ts=2005/6/6 10:20
   48k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_cryptosettings.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_cryptosettings.dll" v0.0 ts=2005/5/30 9:18
  111k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_csv_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_csv_xxport.dll" v0.0 ts=2005/6/6 9:38
   81k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_distributionlist.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_distributionlist.dll" v0.0 ts=2005/6/6 9:36
   40k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_eudora_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_eudora_xxport.dll" v0.0 ts=2005/6/6 9:39
   87k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_gnokii_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_gnokii_xxport.dll" v0.0 ts=2005/6/6 10:18
   66k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_iconview.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_iconview.dll" v0.0 ts=2005/6/6 10:20
   33k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_kde2_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_kde2_xxport.dll" v0.0 ts=2005/6/6 9:38
   37k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_ldif_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_ldif_xxport.dll" v0.0 ts=2005/6/6 9:39
   39k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_opera_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_opera_xxport.dll" v0.0 ts=2005/6/6 9:40
   49k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_pab_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_pab_xxport.dll" v0.0 ts=2005/6/6 9:40
   59k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_resourceselection.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_resourceselection.dll" v0.0 ts=2005/6/6 9:37
   90k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_tableview.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_tableview.dll" v0.0 ts=2005/6/6 10:21
   82k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddrbk_vcard_xxport.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddrbk_vcard_xxport.dll" v0.0 ts=2005/6/6 10:17
   50k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkaddressbookpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkaddressbookpart.dll" v0.0 ts=2005/6/6 10:10
  400k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkarmpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkarmpart.dll" v0.0 ts=2005/6/6 9:59
 1596k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkatepart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkatepart.dll" v0.0 ts=2005/5/30 20:29
  104k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkcertpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcertpart.dll" v0.0 ts=2005/5/30 20:14
   24k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkdeprint_management_module.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint_management_module.dll" v0.0 ts=2005/5/30 20:15
   41k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkdeprint_part.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint_part.dll" v0.0 ts=2005/5/31 14:19
  169k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkfindpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkfindpart.dll" v0.0 ts=2005/5/31 14:19
   68k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkfontviewpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkfontviewpart.dll" v0.0 ts=2005/5/31 16:23
   42k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkhtmlkttsdplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkhtmlkttsdplugin.dll" v0.0 ts=2005/5/31 14:40
    6k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkhtmlpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkhtmlpart.dll" v0.0 ts=2005/5/30 20:22
   39k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkitchensyncpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkitchensyncpart.dll" v0.0 ts=2005/6/6 10:06
  251k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmailpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmailpart.dll" v0.0 ts=2005/6/6 10:31
   23k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmail_bodypartformatter_application_octetstream.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmail_bodypartformatter_application_octetstream.dll" v0.0 ts=2005/5/19 21:21
  243k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmail_bodypartformatter_text_calendar.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmail_bodypartformatter_text_calendar.dll" v0.0 ts=2005/6/6 10:19
   85k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmail_bodypartformatter_text_vcard.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmail_bodypartformatter_text_vcard.dll" v0.0 ts=2005/6/6 9:49
  224k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmail_bodypartformatter_text_xdiff.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmail_bodypartformatter_text_xdiff.dll" v0.0 ts=2005/5/30 9:28
   42k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmanpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmanpart.dll" v0.0 ts=2005/5/31 14:23
   76k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkmultipart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmultipart.dll" v0.0 ts=2005/5/30 20:23
   44k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygknodepart.dll - os=4.0 img=1.0 sys=4.0
                  "cygknodepart.dll" v0.0 ts=2005/6/6 10:13
  552k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkonsolepart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonsolepart.dll" v0.0 ts=2005/5/31 16:12
   50k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_akregator.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_akregator.dll" v0.0 ts=2005/6/6 10:39
   59k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_journalplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_journalplugin.dll" v0.0 ts=2005/6/6 10:38
  109k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_kaddressbookplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_kaddressbookplugin.dll" v0.0 ts=2005/6/6 10:35
  100k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_kmailplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_kmailplugin.dll" v0.0 ts=2005/6/6 10:36
   56k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_knodeplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_knodeplugin.dll" v0.0 ts=2005/6/6 10:38
  182k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_knotesplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_knotesplugin.dll" v0.0 ts=2005/6/6 10:32
   88k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_korganizerplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_korganizerplugin.dll" v0.0 ts=2005/6/6 10:36
   35k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_multisynk.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_multisynk.dll" v0.0 ts=2005/6/6 9:56
   74k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_newstickerplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_newstickerplugin.dll" v0.0 ts=2005/6/6 10:33
   81k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_specialdatesplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_specialdatesplugin.dll" v0.0 ts=2005/6/6 10:12
   81k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_summaryplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_summaryplugin.dll" v0.0 ts=2005/6/6 9:55
   88k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_todoplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_todoplugin.dll" v0.0 ts=2005/6/6 10:37
   85k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkontact_weatherplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygkontact_weatherplugin.dll" v0.0 ts=2005/6/6 10:32
   47k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkorganizerpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorganizerpart.dll" v0.0 ts=2005/6/6 10:26
   42k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkorg_datenums.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorg_datenums.dll" v0.0 ts=2005/6/6 10:01
   80k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkorg_exchange.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorg_exchange.dll" v0.0 ts=2005/6/6 10:02
   76k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkorg_hebrew.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorg_hebrew.dll" v0.0 ts=2005/5/27 23:59
   46k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkorg_journalprint.dll - os=4.0 img=1.0 sys=4.0
                  "cygkorg_journalprint.dll" v0.0 ts=2005/6/6 9:42
   43k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksfilter_addressbook.dll - os=4.0 img=1.0 sys=4.0
                  "cygksfilter_addressbook.dll" v0.0 ts=2005/6/6 9:45
   50k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksfilter_calendar.dll - os=4.0 img=1.0 sys=4.0
                  "cygksfilter_calendar.dll" v0.0 ts=2005/6/6 9:46
   63k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkshorturifilter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkshorturifilter.dll" v0.0 ts=2005/5/31 14:48
   69k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksync_backup.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync_backup.dll" v0.0 ts=2005/6/6 10:08
   66k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksync_debugger.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync_debugger.dll" v0.0 ts=2005/6/6 10:07
   97k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksync_pluckerpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync_pluckerpart.dll" v0.0 ts=2005/6/6 10:28
   68k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksync_restore.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync_restore.dll" v0.0 ts=2005/6/6 10:09
   44k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksync_syncerpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync_syncerpart.dll" v0.0 ts=2005/6/6 10:07
   46k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygksync_viewer.dll - os=4.0 img=1.0 sys=4.0
                  "cygksync_viewer.dll" v0.0 ts=2005/6/6 10:09
  108k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkuriikwsfilter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkuriikwsfilter.dll" v0.0 ts=2005/5/31 14:47
  172k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygkurisearchfilter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkurisearchfilter.dll" v0.0 ts=2005/5/31 14:47
   40k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cyglocaldomainurifilter.dll - os=4.0 img=1.0 sys=4.0
                  "cyglocaldomainurifilter.dll" v0.0 ts=2005/5/31 16:20
   38k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygmultisynkpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygmultisynkpart.dll" v0.0 ts=2005/6/6 9:58
  136k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygnsplugin.dll - os=4.0 img=1.0 sys=4.0
                  "cygnsplugin.dll" v0.0 ts=2005/5/31 16:14
   69k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygoverviewpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygoverviewpart.dll" v0.0 ts=2005/6/6 10:06
   34k 2005/06/06 c:\cygwin\opt\kde3.4\lib\kde3\cygshellscript.dll - os=4.0 img=1.0 sys=4.0
                  "cygshellscript.dll" v0.0 ts=2005/5/30 20:24
  197k 2004/01/16 c:\cygwin\opt\kde3\bin\cygDCOP-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygDCOP-4.dll" v0.0 ts=2003/12/30 0:50
   77k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkatepartinterfaces-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkatepartinterfaces-0.dll" v0.0 ts=2003/12/30 11:04
 1509k 2004/01/16 c:\cygwin\opt\kde3\bin\cygkdecore-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdecore-4.dll" v0.0 ts=2004/1/16 11:59
    7k 2004/01/16 c:\cygwin\opt\kde3\bin\cygkdefakes-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdefakes-4.dll" v0.0 ts=2003/12/30 0:52
  348k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkdefx-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdefx-4.dll" v0.0 ts=2003/12/30 0:52
  721k 2004/01/16 c:\cygwin\opt\kde3\bin\cygkdeprint-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint-4.dll" v0.0 ts=2004/1/16 12:08
  812k 2004/01/16 c:\cygwin\opt\kde3\bin\cygkdeprint_management-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint_management-4.dll" v0.0 ts=2004/1/16 12:08
   32k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkdesasl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdesasl-1.dll" v0.0 ts=2003/12/30 10:00
  126k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkdesu-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdesu-4.dll" v0.0 ts=2003/12/30 1:41
 2063k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkdeui-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeui-4.dll" v0.0 ts=2003/12/30 1:18
 2714k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkio-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkio-4.dll" v0.0 ts=2003/12/30 1:50
    5k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkjava-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkjava-1.dll" v0.0 ts=2003/12/30 10:58
  379k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkjs-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkjs-1.dll" v0.0 ts=2003/12/30 1:20
   53k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkmediaplayer-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmediaplayer-0.dll" v0.0 ts=2003/12/30 10:28
   93k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkmid-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmid-0.dll" v0.0 ts=2003/12/30 10:15
   64k 2003/12/19 c:\cygwin\opt\kde3\bin\cygkmultitabbar-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmultitabbar-0.dll" v0.0 ts=2003/12/10 19:49
  759k 2004/01/16 c:\cygwin\opt\kde3\bin\cygkonq-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonq-4.dll" v0.0 ts=2004/1/7 21:23
   26k 2003/12/19 c:\cygwin\opt\kde3\bin\cygkonqsidebarplugin-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonqsidebarplugin-0.dll" v0.0 ts=2003/12/11 7:14
  236k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkparts-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygkparts-2.dll" v0.0 ts=2003/12/30 10:10
   41k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkscript-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkscript-0.dll" v0.0 ts=2003/12/30 10:27
  140k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkspell-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkspell-4.dll" v0.0 ts=2003/12/30 10:11
  174k 2004/01/08 c:\cygwin\opt\kde3\bin\cygktexteditor-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygktexteditor-0.dll" v0.0 ts=2003/12/30 10:27
   80k 2004/01/08 c:\cygwin\opt\kde3\bin\cygkutils-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkutils-1.dll" v0.0 ts=2003/12/30 10:14
   19k 2004/01/08 c:\cygwin\opt\kde3\bin\cygltdl-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-0.dll" v0.0 ts=2003/12/30 0:51
   36k 2004/01/08 c:\cygwin\opt\kde3\bin\cygshellscript-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygshellscript-0.dll" v0.0 ts=2003/12/30 10:27
   97k 2003/12/19 c:\cygwin\opt\kde3\bin\cygtaskbar-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygtaskbar-1.dll" v0.0 ts=2003/12/10 23:42
  131k 2004/01/08 c:\cygwin\opt\kde3\bin\cygvcard-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvcard-0.dll" v0.0 ts=2003/12/30 10:16
  494k 2004/01/08 c:\cygwin\opt\kde3\lib\cygkabc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkabc-1.dll" v0.0 ts=2003/12/30 10:20
  492k 2003/12/19 c:\cygwin\opt\kde3\lib\cygkateinterfaces.dll - os=4.0 img=1.0 sys=4.0
                  "cygkateinterfaces.dll" v0.0 ts=2003/12/10 22:43
 1158k 2004/01/08 c:\cygwin\opt\kde3\lib\cygkcertpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkcertpart.dll" v0.0 ts=2003/12/30 10:22
  146k 2003/12/19 c:\cygwin\opt\kde3\lib\cygkfindpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkfindpart.dll" v0.0 ts=2003/12/10 23:29
 2766k 2004/01/08 c:\cygwin\opt\kde3\lib\cygkhtml-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkhtml-4.dll" v0.0 ts=2003/12/30 11:02
   76k 2003/12/19 c:\cygwin\opt\kde3\lib\cygkickermain-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygkickermain-1.dll" v0.0 ts=2003/12/10 23:33
  114k 2003/12/19 c:\cygwin\opt\kde3\lib\cygkonq_sidebar_tree.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonq_sidebar_tree.dll" v0.0 ts=2003/12/11 7:15
  127k 2003/12/19 c:\cygwin\opt\kde3\lib\cygnsplugin-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygnsplugin-1.dll" v0.0 ts=2003/12/11 9:33
   94k 2003/12/19 c:\cygwin\opt\kde3\lib\cygtaskmanager-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygtaskmanager-1.dll" v0.0 ts=2003/12/10 23:41
  941k 2004/01/08 c:\cygwin\opt\kde3\lib\kde3\cygkatepart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkatepart.dll" v0.0 ts=2003/12/30 11:09
   40k 2003/12/19 c:\cygwin\opt\kde3\lib\kde3\cygkdeprint_part.dll - os=4.0 img=1.0 sys=4.0
                  "cygkdeprint_part.dll" v0.0 ts=2003/12/10 23:27
   53k 2004/01/16 c:\cygwin\opt\kde3\lib\kde3\cygkmanpart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmanpart.dll" v0.0 ts=2003/12/10 23:51
   55k 2004/01/08 c:\cygwin\opt\kde3\lib\kde3\cygkmultipart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkmultipart.dll" v0.0 ts=2003/12/30 11:03
  514k 2003/12/19 c:\cygwin\opt\kde3\lib\kde3\cygkonsolepart.dll - os=4.0 img=1.0 sys=4.0
                  "cygkonsolepart.dll" v0.0 ts=2003/12/11 1:34
   62k 2004/01/08 c:\cygwin\opt\kde3\lib\kde3\cygkpac.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpac.dll" v0.0 ts=2003/12/30 10:00
   52k 2003/12/19 c:\cygwin\opt\kde3\lib\kde3\cygkshorturifilter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkshorturifilter.dll" v0.0 ts=2003/12/10 23:03
  114k 2003/12/19 c:\cygwin\opt\kde3\lib\kde3\cygkuriikwsfilter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkuriikwsfilter.dll" v0.0 ts=2003/12/10 23:03
  167k 2003/12/19 c:\cygwin\opt\kde3\lib\kde3\cygkurisearchfilter.dll - os=4.0 img=1.0 sys=4.0
                  "cygkurisearchfilter.dll" v0.0 ts=2003/12/10 23:03
   37k 2003/12/19 c:\cygwin\opt\kde3\lib\kde3\cyglocaldomainurifilter.dll - os=4.0 img=1.0 sys=4.0
                  "cyglocaldomainurifilter.dll" v0.0 ts=2003/12/10 23:03
  243k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2005/2/23 15:42
   26k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2005/2/23 15:42
   28k 2004/03/31 c:\cygwin\usr\X11R6\bin\cygDtPrint-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygDtPrint-1.dll" v0.0 ts=2004/3/31 6:23
   21k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2005/2/23 15:45
  282k 2003/10/28 c:\cygwin\usr\X11R6\bin\cygfreetype-9.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-9.dll" v0.0 ts=2003/10/18 8:44
   36k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygFS-6.dll" v0.0 ts=2005/2/23 15:34
  358k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2005/2/23 15:39
  438k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2005/2/23 15:41
  140k 2004/08/06 c:\cygwin\usr\X11R6\bin\cygglut-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygglut-3.dll" v0.0 ts=2004/8/6 16:43
   75k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2005/2/23 15:28
   77k 2004/03/31 c:\cygwin\usr\X11R6\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMrm-2.dll" v0.0 ts=2004/3/31 6:23
    9k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2005/2/23 15:28
 1413k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2005/2/23 15:39
   20k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2005/2/23 15:42
   30k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2005/2/23 15:28
   66k 2004/03/31 c:\cygwin\usr\X11R6\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygUil-2.dll" v0.0 ts=2004/3/31 6:23
  877k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2005/2/23 15:28
  254k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2005/2/23 15:31
  356k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2005/2/23 15:32
  363k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-8.dll" v0.0 ts=2005/2/23 15:33
  275k 2004/01/13 c:\cygwin\usr\X11R6\bin\cygXaw3d-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw3d-7.dll" v0.0 ts=2004/1/13 23:17
    9k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2005/2/23 15:44
   30k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2005/2/23 15:43
    9k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2005/2/23 15:44
    7k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXevie-1.dll" v0.0 ts=2005/2/23 15:43
   49k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2005/2/23 15:28
   16k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2005/2/23 15:43
   56k 2004/03/11 c:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/18 2:42
   63k 2004/03/23 c:\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2004/3/23 23:20
   27k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2005/2/23 15:34
  125k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2005/2/23 15:34
   12k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbui-1.dll" v0.0 ts=2005/2/23 15:34
 1294k 2004/03/31 c:\cygwin\usr\X11R6\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXm-2.dll" v0.0 ts=2004/3/31 6:20
  459k 2004/02/10 c:\cygwin\usr\X11R6\bin\cygXmHTML-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmHTML-0.dll" v0.0 ts=2004/2/10 21:14
   76k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2005/2/23 15:30
   11k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2005/2/23 15:30
   26k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2005/2/23 15:31
   52k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2005/2/23 15:30
   12k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2005/2/23 15:43
   28k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2005/2/23 15:42
    8k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXRes-1.dll" v0.0 ts=2005/2/23 15:43
   40k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrx-6.dll" v0.0 ts=2005/2/23 15:53
   25k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrxnest-6.dll" v0.0 ts=2005/2/23 15:53
  282k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2005/2/23 15:29
   27k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2005/2/23 15:43
   17k 2005/02/23 c:\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2005/2/23 15:34
 1774k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyganjuta.dll - os=4.0 img=1.0 sys=4.0
                  "cyganjuta.dll" v0.0 ts=2004/5/18 19:03
  128k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygaudiofile-0.dll" v0.0 ts=2004/4/30 17:30
   46k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygbeep-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbeep-1.dll" v0.0 ts=2004/5/21 17:07
  155k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygdevhelp-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygdevhelp-1-0.dll" v0.0 ts=2004/5/5 7:38
  401k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygdia.dll - os=4.0 img=1.0 sys=4.0
                  "cygdia.dll" v0.0 ts=2004/5/22 16:49
  536k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygeel-2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygeel-2-2.dll" v0.0 ts=2004/5/6 12:09
   27k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygesd-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygesd-0.dll" v0.0 ts=2004/5/3 4:18
   24k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggailutil-17.dll - os=4.0 img=1.0 sys=4.0
                  "cyggailutil-17.dll" v0.0 ts=2004/5/6 7:25
  389k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2004/6/27 14:46
   21k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggdkcardimage-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdkcardimage-0.dll" v0.0 ts=2004/5/5 10:11
   77k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2004/6/27 9:28
   57k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2004/6/27 14:58
   79k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggnome-desktop-2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome-desktop-2-2.dll" v0.0 ts=2004/5/6 5:43
   12k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggnome-window-settings-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome-window-settings-1.dll" v0.0 ts=2004/5/6 19:20
 2676k 2005/07/26 c:\cygwin\opt\gnome2\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2004/6/27 14:48
   45k 2005/07/26 c:\cygwin\opt\gnome2\bin\cygpanel-applet-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-applet-2-0.dll" v0.0 ts=2004/5/6 6:17
   93k 2005/02/17 c:\cygwin\bin\cygapr-0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygapr-0-0.dll" v0.0 ts=2005/2/17 22:52
   68k 2005/02/17 c:\cygwin\bin\cygaprutil-0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygaprutil-0-0.dll" v0.0 ts=2005/2/17 22:56
   77k 2004/06/04 c:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygart_lgpl_2-2.dll" v0.0 ts=2004/6/4 12:20
  802k 2003/09/15 c:\cygwin\bin\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0
                  "cygaspell-15.dll" v0.0 ts=2003/9/15 14:32
  123k 2004/09/29 c:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2004/9/30 1:16
  145k 2004/09/02 c:\cygwin\bin\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygaudiofile-0.dll" v0.0 ts=2004/9/2 5:38
  336k 2004/10/27 c:\cygwin\bin\cygbonobo-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygbonobo-2-0.dll" v0.0 ts=2004/10/27 9:43
   72k 2004/10/27 c:\cygwin\bin\cygbonobo-activation-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygbonobo-activation-4.dll" v0.0 ts=2004/10/27 1:19
  425k 2004/10/29 c:\cygwin\bin\cygbonoboui-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygbonoboui-2-0.dll" v0.0 ts=2004/10/29 1:12
   56k 2005/07/09 c:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2005/7/9 7:09
   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/27 2:07
   18k 2004/07/06 c:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2004/7/6 20:09
  260k 2005/06/25 c:\cygwin\bin\cygclamav-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygclamav-1.dll" v0.0 ts=2005/6/25 9:33
  529k 2004/06/27 c:\cygwin\bin\cygcppunit-1-9-14.dll - os=4.0 img=1.0 sys=4.0
                  "cygcppunit-1-9-14.dll" v0.0 ts=2004/6/27 3:29
  260k 2004/10/26 c:\cygwin\bin\cygcroco-0.6-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygcroco-0.6-3.dll" v0.0 ts=2004/10/27 0:09
    7k 2003/10/19 c:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 9:57
  858k 2005/04/11 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=2005/4/11 20:21
 1042k 2005/07/07 c:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.8.dll" v0.0 ts=2005/7/7 11:06
  617k 2004/03/22 c:\cygwin\bin\cygcurl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-2.dll" v0.0 ts=2004/3/22 16:52
   22k 2004/02/10 c:\cygwin\bin\cygcygipc-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcygipc-2.dll" v0.0 ts=2004/2/10 3:48
  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 18:24
  831k 2003/09/20 c:\cygwin\bin\cygdb-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.1.dll" v0.0 ts=2003/9/20 23:51
  895k 2004/04/28 c:\cygwin\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.2.dll" v0.0 ts=2004/4/27 17:31
  965k 2005/05/14 c:\cygwin\bin\cygdb-4.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.3.dll" v0.0 ts=2005/5/14 14:37
  326k 2002/06/26 c:\cygwin\bin\cygdb2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb2.dll" v0.0 ts=2002/6/26 19:48
  487k 2002/07/24 c:\cygwin\bin\cygdb_cxx-3.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-3.1.dll" v0.0 ts=2002/7/24 18:25
 1080k 2003/09/20 c:\cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.1.dll" v0.0 ts=2003/9/20 23:53
 1156k 2004/04/28 c:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.2.dll" v0.0 ts=2004/4/27 17:35
 1240k 2005/05/14 c:\cygwin\bin\cygdb_cxx-4.3.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.3.dll" v0.0 ts=2005/5/14 14:41
   28k 2004/08/15 c:\cygwin\bin\cygesd-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygesd-0.dll" v0.0 ts=2004/8/16 1:31
   94k 2004/06/07 c:\cygwin\bin\cygexif-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygexif-10.dll" v0.0 ts=2004/6/7 10:53
  174k 2004/10/14 c:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2004/10/14 10:34
   71k 2005/07/30 c:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexslt-0.dll" v0.0 ts=2005/7/30 11:06
  654k 2003/11/04 c:\cygwin\bin\cygfltknox-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox-0.dll" v0.0 ts=2003/11/4 22:57
   65k 2003/11/04 c:\cygwin\bin\cygfltknox_forms-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_forms-0.dll" v0.0 ts=2003/11/4 22:57
   81k 2003/11/04 c:\cygwin\bin\cygfltknox_gl-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_gl-0.dll" v0.0 ts=2003/11/4 22:58
  108k 2003/11/04 c:\cygwin\bin\cygfltknox_images-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfltknox_images-0.dll" v0.0 ts=2003/11/4 22:58
  129k 2004/03/11 c:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2004/3/11 1:12
   40k 2005/07/10 c:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2005/7/10 5:29
   45k 2001/04/25 c:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/25 7:28
   35k 2002/01/09 c:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/9 7:03
   48k 2003/08/09 c:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 11:25
  907k 2004/06/09 c:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfpx-1.dll" v0.0 ts=2004/6/9 10:35
  361k 2003/10/25 c:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2003/10/22 6:18
  195k 2004/11/23 c:\cygwin\bin\cyggconf-2-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggconf-2-4.dll" v0.0 ts=2004/11/23 23:38
  323k 2005/07/10 c:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2005/7/10 2:10
  222k 2005/01/13 c:\cygwin\bin\cyggd-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyggd-2.dll" v0.0 ts=2005/1/13 16:56
   28k 2003/07/20 c:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 9:58
   30k 2003/08/11 c:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/11 4:12
   19k 2003/03/22 c:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/20 4:05
   15k 2003/07/20 c:\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 10:00
   15k 2003/08/11 c:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2003/8/11 4:13
  195k 2004/09/02 c:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-1-2-0.dll" v0.0 ts=2004/9/2 20:31
  394k 2004/12/31 c:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2004/12/30 21:59
   79k 2004/12/31 c:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2004/12/30 21:36
   56k 2004/12/31 c:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2004/12/30 23:45
  116k 2004/10/10 c:\cygwin\bin\cyggeotiff-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggeotiff-1.dll" v0.0 ts=2004/10/11 1:55
  107k 2004/07/06 c:\cygwin\bin\cyggettextlib-0-14-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextlib-0-14-1.dll" v0.0 ts=2004/7/6 19:56
   17k 2004/07/06 c:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextpo-0.dll" v0.0 ts=2004/7/6 19:56
  190k 2004/07/06 c:\cygwin\bin\cyggettextsrc-0-14-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggettextsrc-0-14-1.dll" v0.0 ts=2004/7/6 19:56
   79k 2004/09/07 c:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglade-2.0-0.dll" v0.0 ts=2004/9/8 0:54
  135k 2005/03/16 c:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-1-2-0.dll" v0.0 ts=2005/3/16 3:16
  564k 2004/12/30 c:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2004/12/30 15:17
   12k 2005/03/16 c:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-1-2-0.dll" v0.0 ts=2005/3/16 3:18
   11k 2004/12/30 c:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2004/12/30 15:21
  158k 2004/10/16 c:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2004/10/16 9:40
  288k 2004/10/16 c:\cygwin\bin\cyggmpxx-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmpxx-3.dll" v0.0 ts=2004/10/16 9:40
   76k 2004/10/28 c:\cygwin\bin\cyggnome-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome-2-0.dll" v0.0 ts=2004/10/28 23:06
   32k 2004/09/29 c:\cygwin\bin\cyggnome-keyring-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnome-keyring-0.dll" v0.0 ts=2004/9/29 8:27
  167k 2004/09/24 c:\cygwin\bin\cyggnomecanvas-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomecanvas-2-0.dll" v0.0 ts=2004/9/24 4:42
  377k 2004/11/04 c:\cygwin\bin\cyggnomeprint-2-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomeprint-2-2-0.dll" v0.0 ts=2004/11/4 3:53
  158k 2004/10/04 c:\cygwin\bin\cyggnomeprintui-2-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomeprintui-2-2-0.dll" v0.0 ts=2004/10/4 4:57
  541k 2004/10/29 c:\cygwin\bin\cyggnomeui-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomeui-2-0.dll" v0.0 ts=2004/10/29 11:30
  403k 2004/10/27 c:\cygwin\bin\cyggnomevfs-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnomevfs-2-0.dll" v0.0 ts=2004/10/27 23:29
  252k 2004/12/30 c:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2004/12/30 15:20
   12k 2005/07/09 c:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2005/7/10 0:34
  351k 2004/07/17 c:\cygwin\bin\cygGraphicsMagick++-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick++-0.dll" v0.0 ts=2004/7/17 10:48
 2170k 2004/07/17 c:\cygwin\bin\cygGraphicsMagick-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygGraphicsMagick-0.dll" v0.0 ts=2004/7/17 10:46
 1412k 2005/03/12 c:\cygwin\bin\cyggsl-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggsl-0.dll" v0.0 ts=2005/3/12 22:26
  184k 2005/03/12 c:\cygwin\bin\cyggslcblas-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggslcblas-0.dll" v0.0 ts=2005/3/12 22:02
   10k 2005/03/16 c:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-1-2-0.dll" v0.0 ts=2005/3/16 3:18
   15k 2004/12/30 c:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2004/12/30 15:21
 1293k 2004/09/02 c:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-1-2-0.dll" v0.0 ts=2004/9/2 20:44
 2708k 2004/12/31 c:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2004/12/30 22:55
  528k 2005/05/06 c:\cygwin\bin\cygguile-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-12.dll" v0.0 ts=2005/5/6 11:46
   17k 2005/05/06 c:\cygwin\bin\cygguile-ltdl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-ltdl-1.dll" v0.0 ts=2005/5/6 11:44
   68k 2005/05/06 c:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/5/6 11:46
   31k 2005/05/06 c:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/5/6 11:46
   12k 2005/05/06 c:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0
                  "cygguilereadline-v-12-12.dll" v0.0 ts=2005/5/6 11:46
   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/7 5:34
   29k 2003/08/10 c:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/11 1:16
   24k 2005/06/26 c:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2005/6/26 6:41
  311k 2005/06/22 c:\cygwin\bin\cyghttpd2core.dll - os=4.0 img=1.0 sys=4.0
                  "cyghttpd2core.dll" v0.0 ts=2005/6/22 19:28
  991k 2004/07/06 c:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2004/7/6 20:10
  147k 2004/08/31 c:\cygwin\bin\cygIDL-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygIDL-2-0.dll" v0.0 ts=2004/8/31 4:00
   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 10:28
   37k 2003/08/10 c:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 23:50
   54k 2004/07/06 c:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-3.dll" v0.0 ts=2004/7/6 19:51
   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 19:09
   12k 2003/02/17 c:\cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygioperm-0.dll" v0.0 ts=2003/2/17 20:58
  241k 2004/08/06 c:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1-701-1.dll" v0.0 ts=2004/8/6 17:17
   48k 2003/08/10 c:\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig1.dll" v0.0 ts=2003/8/11 1:58
  132k 2003/08/11 c:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2003/8/11 2:37
  119k 2002/02/09 c:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg6b.dll" v0.0 ts=2002/2/9 6:19
   60k 2004/09/27 c:\cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3.dll" v0.0 ts=2004/9/27 19:32
   60k 2003/07/27 c:\cygwin\bin\cygkpathsea-3abi13.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-3abi13.dll" v0.0 ts=2003/7/27 22:23
   65k 2005/05/05 c:\cygwin\bin\cygkpathsea-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygkpathsea-4.dll" v0.0 ts=2005/5/5 16:33
   42k 2005/05/04 c:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2-2-7.dll" v0.0 ts=2005/5/4 12:54
   40k 2004/01/02 c:\cygwin\bin\cyglber-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2.dll" v0.0 ts=2004/1/2 12:11
  156k 2004/06/04 c:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyglcms-1.dll" v0.0 ts=2004/6/4 16:00
  179k 2005/05/04 c:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2-2-7.dll" v0.0 ts=2005/5/4 13:03
  194k 2004/01/02 c:\cygwin\bin\cygldap-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2.dll" v0.0 ts=2004/1/2 12:27
  191k 2005/05/04 c:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2-2-7.dll" v0.0 ts=2005/5/4 13:03
  202k 2004/01/02 c:\cygwin\bin\cygldap_r-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2.dll" v0.0 ts=2004/1/2 12:27
  101k 2004/09/18 c:\cygwin\bin\cyglightcomp.dll - os=4.0 img=1.0 sys=4.0
                  "cyglightcomp.dll" v0.0 ts=2004/9/18 21:39
   41k 2005/06/01 c:\cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-3.dll" v0.0 ts=2005/6/1 7:34
  146k 2004/12/21 c:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2004/12/21 15:34
  369k 2004/08/11 c:\cygwin\bin\cygMagick++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick++-6.dll" v0.0 ts=2004/8/11 8:04
 3214k 2004/08/11 c:\cygwin\bin\cygMagick-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygMagick-6.dll" v0.0 ts=2004/8/11 7:37
  181k 2003/10/06 c:\cygwin\bin\cygmcrypt-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygmcrypt-4.dll" v0.0 ts=2003/10/6 16:54
   21k 2005/07/10 c:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2005/7/10 5:28
   26k 2001/04/25 c:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/25 7:27
   20k 2002/01/09 c:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/9 7:03
   29k 2003/08/09 c:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 11:25
  222k 2005/05/28 c:\cygwin\bin\cygmhash-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygmhash-2.dll" v0.0 ts=2005/5/28 11:40
   21k 2004/10/22 c:\cygwin\bin\cygminires.dll - os=4.0 img=1.0 sys=4.0
                  "cygminires.dll" v0.0 ts=2004/10/22 22:28
  323k 2004/08/10 c:\cygwin\bin\cygmng-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmng-1.dll" v0.0 ts=2004/8/10 21:45
   71k 2004/10/16 c:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2004/10/16 9:40
   95k 2004/10/16 c:\cygwin\bin\cygmpfr-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpfr-0.dll" v0.0 ts=2004/10/16 9:47
  882k 2004/09/13 c:\cygwin\bin\cygnaim_core-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygnaim_core-0.dll" v0.0 ts=2004/9/13 20:04
   67k 2005/07/10 c:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2005/7/10 5:29
  156k 2001/04/25 c:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/25 7:29
  175k 2002/01/09 c:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/9 7:03
  225k 2005/07/10 c:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2005/7/10 5:15
  226k 2001/04/25 c:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/25 7:17
  202k 2002/01/09 c:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/9 7:03
  224k 2003/08/09 c:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 11:24
   92k 2004/07/10 c:\cygwin\bin\cygneon-24.dll - os=4.0 img=1.0 sys=4.0
                  "cygneon-24.dll" v0.0 ts=2004/7/10 17:37
   49k 2004/08/02 c:\cygwin\bin\cygogrove-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygogrove-0.dll" v0.0 ts=2004/8/2 17:41
  304k 2004/10/11 c:\cygwin\bin\cygORBit-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBit-2-0.dll" v0.0 ts=2004/10/12 1:18
   39k 2004/10/11 c:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBit-imodule-2-0.dll" v0.0 ts=2004/10/12 1:28
   18k 2004/10/11 c:\cygwin\bin\cygORBitCosNaming-2-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygORBitCosNaming-2-0.dll" v0.0 ts=2004/10/12 1:27
 1706k 2004/08/02 c:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygosp-4.dll" v0.0 ts=2004/8/2 16:51
  326k 2004/08/02 c:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygospgrove-0.dll" v0.0 ts=2004/8/2 18:07
 1922k 2004/08/02 c:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygostyle-0.dll" v0.0 ts=2004/8/2 18:07
   11k 2005/07/10 c:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2005/7/10 5:28
   15k 2001/04/25 c:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/25 7:27
   12k 2002/01/09 c:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/9 7:03
   19k 2003/08/09 c:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 11:24
  196k 2005/01/08 c:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2005/1/8 22:19
  138k 2005/01/08 c:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2005/1/8 22:36
   33k 2005/01/08 c:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangowin32-1.0-0.dll" v0.0 ts=2005/1/8 22:39
   37k 2005/01/08 c:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangox-1.0-0.dll" v0.0 ts=2005/1/8 22:35
   17k 2005/01/08 c:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2005/1/8 22:38
   62k 2003/12/11 c:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/12/11 18:01
   63k 2003/04/11 c:\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 10:31
    9k 2003/12/11 c:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/12/11 18:01
   61k 2003/04/11 c:\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 10:31
 1248k 2005/07/28 c:\cygwin\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8.dll" v0.0 ts=2005/7/28 11:23
  224k 2005/07/11 c:\cygwin\bin\cygpng10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng10.dll" v0.0 ts=2005/7/12 1:45
  230k 2005/07/11 c:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2005/7/12 1:50
  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/21 2: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 7:45
  575k 2004/10/10 c:\cygwin\bin\cygproj-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygproj-0.dll" v0.0 ts=2004/10/11 0:57
  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/7 5:34
  148k 2003/08/10 c:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/11 1:16
  144k 2005/06/26 c:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2005/6/26 6:41
  685k 2005/01/18 c:\cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0
                  "cygruby18.dll" v0.0 ts=2005/1/18 22:21
   78k 2004/10/13 c:\cygwin\bin\cygsasl2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsasl2-2.dll" v0.0 ts=2004/10/14 0:50
  380k 2003/12/13 c:\cygwin\bin\cygsmi-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsmi-2.dll" v0.0 ts=2003/12/13 1:57
  171k 2005/04/11 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=2005/4/11 20:21
  217k 2005/07/07 c:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.8.dll" v0.0 ts=2005/7/7 11:07
   28k 2004/11/15 c:\cygwin\bin\cygstartup-notification-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygstartup-notification-1-0.dll" v0.0 ts=2004/11/15 4:59
  134k 2005/06/10 c:\cygwin\bin\cygsvn_client-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_client-1-0.dll" v0.0 ts=2005/6/10 23:25
   27k 2005/06/10 c:\cygwin\bin\cygsvn_delta-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_delta-1-0.dll" v0.0 ts=2005/6/10 23:21
   22k 2005/06/10 c:\cygwin\bin\cygsvn_diff-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_diff-1-0.dll" v0.0 ts=2005/6/10 23:23
   15k 2005/06/10 c:\cygwin\bin\cygsvn_fs-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs-1-0.dll" v0.0 ts=2005/6/10 23:22
  127k 2005/06/10 c:\cygwin\bin\cygsvn_fs_base-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_base-1-0.dll" v0.0 ts=2005/6/10 23:22
   88k 2005/06/10 c:\cygwin\bin\cygsvn_fs_fs-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_fs_fs-1-0.dll" v0.0 ts=2005/6/10 23:21
    9k 2005/06/10 c:\cygwin\bin\cygsvn_ra-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra-1-0.dll" v0.0 ts=2005/6/10 23:24
   85k 2005/06/10 c:\cygwin\bin\cygsvn_ra_dav-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_dav-1-0.dll" v0.0 ts=2005/6/10 23:23
   19k 2005/06/10 c:\cygwin\bin\cygsvn_ra_local-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_local-1-0.dll" v0.0 ts=2005/6/10 23:23
   55k 2005/06/10 c:\cygwin\bin\cygsvn_ra_svn-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_ra_svn-1-0.dll" v0.0 ts=2005/6/10 23:22
   98k 2005/06/10 c:\cygwin\bin\cygsvn_repos-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_repos-1-0.dll" v0.0 ts=2005/6/10 23:23
  130k 2005/06/10 c:\cygwin\bin\cygsvn_subr-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_subr-1-0.dll" v0.0 ts=2005/6/10 23:10
   25k 2005/06/10 c:\cygwin\bin\cygsvn_swig_py-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_swig_py-1-0.dll" v0.0 ts=2005/6/10 23:26
  146k 2005/06/10 c:\cygwin\bin\cygsvn_wc-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygsvn_wc-1-0.dll" v0.0 ts=2005/6/10 23:24
  230k 2004/10/04 c:\cygwin\bin\cygt1-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygt1-5.dll" v0.0 ts=2004/10/4 23:44
   18k 2004/10/04 c:\cygwin\bin\cygt1x-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygt1x-5.dll" v0.0 ts=2004/10/4 23:44
  247k 2004/12/07 c:\cygwin\bin\cygtidy-0-99-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygtidy-0-99-0.dll" v0.0 ts=2004/12/7 15:34
  304k 2005/07/10 c:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2005/7/11 1:18
  281k 2003/02/24 c:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff3.dll" v0.0 ts=2003/2/24 5:58
  282k 2003/08/11 c:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/11 4:32
  281k 2005/07/10 c:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-5.dll" v0.0 ts=2005/7/11 1:21
   27k 2004/03/05 c:\cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygungif-4.dll" v0.0 ts=2004/3/5 21:13
  154k 2004/08/11 c:\cygwin\bin\cygWand-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygWand-6.dll" v0.0 ts=2004/8/11 8:04
  293k 2004/06/08 c:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygwmf-0-2-7.dll" v0.0 ts=2004/6/8 12:49
  101k 2004/06/08 c:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygwmflite-0-2-7.dll" v0.0 ts=2004/6/8 12:46
  151k 2004/10/19 c:\cygwin\bin\cygwnck-1-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygwnck-1-4.dll" v0.0 ts=2004/10/19 22:58
 2689k 2002/11/16 c:\cygwin\bin\cygxerces-c21.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c21.dll" v0.0 ts=2002/11/16 5:07
 2984k 2003/02/07 c:\cygwin\bin\cygxerces-c22.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c22.dll" v0.0 ts=2003/2/7 19:50
 3006k 2003/10/12 c:\cygwin\bin\cygxerces-c23.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c23.dll" v0.0 ts=2003/10/12 4:36
 3520k 2003/12/16 c:\cygwin\bin\cygxerces-c24.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c24.dll" v0.0 ts=2003/12/16 20:45
 3416k 2004/02/21 c:\cygwin\bin\cygxerces-c25.dll - os=4.0 img=1.0 sys=4.0
                  "cygxerces-c25.dll" v0.0 ts=2004/2/21 7:49
 1383k 2005/07/17 c:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2005/7/16 20:33
   50k 2003/08/09 c:\cygwin\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-noX4.dll" v0.0 ts=2003/8/9 9:21
   54k 2003/08/09 c:\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-X4.dll" v0.0 ts=2003/8/9 9:22
  200k 2005/07/30 c:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxslt-1.dll" v0.0 ts=2005/7/30 11:05
   60k 2005/07/09 c:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2005/7/9 4:27
 1265k 2005/07/03 c:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2005/7/3 2:30
    Cygwin DLL version info:
        DLL version: 1.5.18
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 132
        Shared data: 4
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Sat Jul 2 20:30:04 EDT 2005
        Shared id: cygwin1S4

  603k 2005/07/15 c:\cygwin\lib\lapack\cygblas.dll - os=4.0 img=1.0 sys=4.0
                  "cygblas.dll" v0.0 ts=2005/7/14 14:04
 5367k 2005/07/15 c:\cygwin\lib\lapack\cyglapack.dll - os=4.0 img=1.0 sys=4.0
                  "cyglapack.dll" v0.0 ts=2005/7/14 14:04

No Cygwin services found.


Cygwin Package Information
Last downloaded files to: d:\temp\cygtmp
Last downloaded files from: ftp://mirror.switch.ch/mirror/cygwin

Package                 Version
_update-info-dir        00284-1
a2ps                    4.13-1
agetty                  2.1-1
alternatives            1.3.20a-1
antiword                0.34-2
apache                  1.3.33-1
apache2                 2.0.54-1
apache2-devel           2.0.54-1
apache2-manual          2.0.54-1
apr                     0.9.6-1
apr-util                0.9.6-1
ash                     20040127-3
aspell                  0.50.3-1
aspell-de               0.50.2-1
aspell-dev              0.50.3-1
aspell-doc              0.50.3-1
aspell-en               0.51.0-1
aspell-pl               0.50.2-1
astyle                  1.15.3-3
atk                     1.8.0-1
atk-devel               1.8.0-1
atk-doc                 1.8.0-1
atk-runtime             1.8.0-1
audiofile               0.2.6-2
autoconf                2.59-2
autoconf-devel          2.59-2
autoconf-stable         2.13-6
autoconf2.1             2.13-1
autoconf2.5             2.59-1
automake                1.7.9-2
automake-devel          1.9.2-2
automake-stable         1.4p6-3
automake1.4             1.4p6-2
automake1.6             1.6.3-2
automake1.7             1.7.9-2
automake1.8             1.8.5-2
automake1.9             1.9.5-2
autossh                 1.3-2
base-files              3.5-1
base-passwd             2.2-1
bash                    3.0-8
bc                      1.06-2
binutils                20050610-1
bison                   20030307-1
byacc                   1.9-1
bzip2                   1.0.3-1
c-client                2002e-3
c3270                   3.2.20-1
cabextract              0.6-2
catgets                 1.0-1
ccache                  2.2-1
ccdoc                   0.8.41-2
ccrypt                  1.7-1
cgoban                  1.9.14-1
check                   0.9.1-1
chere                   0.6-1
chkconfig               1.2.24h-1
clamav                  0.86.1-1
clear                   1.0-1
clisp                   2.34-1
cmake                   2.0.6-1
cocom                   0.995-1
compface                1.4-5
coreutils               5.3.0-9
cpio                    2.6-3
cppunit                 1.9.14-1
cramfs                  1.1-1
cron                    3.0.1-19
crypt                   1.1-1
ctags                   5.5-4
ctetris                 0.30-1
curl                    7.11.1-1
curl-devel              7.11.1-1
cvs                     1.11.17-1
cvsutils                0.2.3-1
cygipc                  2.03-2
cygrunsrv               1.10-1
cygutils                1.2.9-1
cygwin                  1.5.18-1
cygwin-doc              1.4-2
cygwin-x-doc            1.0.4-1
cyrus-sasl              2.1.19-3
d                       1.2.0-1
db2                     2.7.7-4
db3.1                   3.1.17-2
db4.1                   4.1.25-1
db4.2                   4.2.52-1
db4.3                   4.3.28-1
ddd                     3.3.9-1
dejagnu                 20021217-2
desktop-file-utils      0.10-1
diff                    1.0-1
diffstat                1.39-1
diffutils               2.8.7-1
distcc                  2.18.3-1
docbook-xml42           4.2-3
docbook-xml43           4.3-1
docbook-xsl             1.69.0-1
doxygen                 1.4.2_20050421-1
dpkg                    1.10.4-2
e2fsimage               0.2.0-2
e2fsprogs               1.35-3
ec-fonts-mftraced       1.0.8-4
ed                      0.2-1
editrights              1.01-1
ELFIO                   1.0.2-1
emacs                   21.2-13
emacs-el                21.2-13
emacs-X11               21.2-13
email                   2.3.4-1
enscript                1.6.3-3
epstool                 3.08-1
esound                  0.2.35-1
exif                    0.6.9-1
exim                    4.52-2
expat                   1.95.8-1
expect                  20030128-1
fetchmail               6.2.5-2
figlet                  2.2-1
file                    4.12-1
fileutils               4.1-3
findutils               20041227-1
flex                    2.5.4a-3
fltk                    1.1.4-2
fontconfig              2.2.2-1
fortune                 1.99.1-1
freeglut                2.2.0-1
freetype2               2.1.5-1
fvwm                    2.4.7-3
gawk                    3.1.4-3
gcc                     3.4.4-1
gcc-ada                 3.4.4-1
gcc-core                3.4.4-1
gcc-g++                 3.4.4-1
gcc-g77                 3.4.4-1
gcc-gdc                 3.4.4-1
gcc-gpc                 3.3.3-3
gcc-java                3.4.4-1
gcc-mingw               20040810-1
gcc-mingw-ada           20050522-1
gcc-mingw-core          20050522-1
gcc-mingw-g++           20050522-1
gcc-mingw-g77           20050522-1
gcc-mingw-gdc           20050522-1
gcc-mingw-gpc           20040810-1
gcc-mingw-java          20050522-1
gcc-mingw-objc          20050522-1
gcc-objc                3.4.4-1
GConf2                  2.8.1-1
gd                      2.0.33-1
gdb                     20041228-3
gdbm                    1.8.3-7
gettext                 0.14.1-1
gettext-devel           0.14.1-1
ghostscript             8.15-2
ghostscript-base        8.15-2
ghostscript-x11         8.15-2
glib                    1.2.10-3
glib-devel              1.2.10-3
glib2                   2.4.8-1
glib2-devel             2.4.8-1
glib2-doc               2.4.8-1
glib2-runtime           2.4.8-1
gmp                     4.1.4-2
gnome-common            2.8.0-1
gnome-icon-theme        2.8.0-1
gnome-keyring           0.4.0-1
gnome-mime-data         2.4.1-1
gnome-vfs2              2.8.0-1
gnugo                   3.6-1
gnupg                   1.4.1-1
gnuplot                 4.0.0-1
gperf                   2.7.2-1
grace                   5.1.18-1
GraphicsMagick          1.0.6-1
grep                    2.5.1a-2
groff                   1.18.1-2
gsl                     1.6-1
gtk+                    1.2.10-2
gtk+-devel              1.2.10-2
gtk-doc                 1.3-1
gtk2-x11                2.4.14-1
gtk2-x11-devel          2.4.14-1
gtk2-x11-doc            2.4.14-1
gtk2-x11-runtime        2.4.14-1
gtypist                 2.7-2
guile                   1.6.7-1
guile-devel             1.6.7-1
guile-doc               1.6.7-1
gv                      3.5.8-2
gzip                    1.3.5-1
help2man                1.33.1-1
hexedit                 1.2.10-1
hicolor-icon-theme      0.5-1
ImageMagick             6.0.4-1
indent                  2.2.9-1
inetutils               1.3.2-29
initscripts             0.9-1
intltool                0.33-1
ioperm                  0.4-1
irc                     20010101-3
jasper                  1.701.0-1
jbigkit                 1.5-3
jgraph                  8.3-1
joe                     3.3-2
jpeg                    6b-11
keychain                2.5.3.1-1
lablgtk2                2.4.0-2
lapack                  3.0-2
lcms                    1.13-1
less                    381-1
lesstif                 0.93.94-2
lftp                    2.6.10-2
libapr0                 0.9.6-1
libaprutil0             0.9.6-1
libart_lgpl             2.3.16-1
libaspell15             0.50.3-1
libaudiofile-devel      0.2.6-2
libaudiofile0           0.2.6-2
libbonobo2              2.8.0-1
libbonobo2-devel        2.8.0-1
libbonobo2-doc          2.8.0-1
libbonobo20             2.8.0-1
libbonoboui2            2.8.0-1
libbz2_0                1.0.2-1
libbz2_1                1.0.3-1
libcharset1             1.9.2-1
libcroco                0.5.1-2
libcroco06              0.6.0-1
libdb2                  2.7.7-4
libdb2-devel            2.7.7-4
libdb3.1                3.1.17-2
libdb3.1-devel          3.1.17-2
libdb4.1                4.1.25-1
libdb4.1-devel          4.1.25-1
libdb4.2                4.2.52-1
libdb4.2-devel          4.2.52-1
libdb4.3                4.3.28-1
libdb4.3-devel          4.3.28-1
libesound-devel         0.2.35-1
libesound0              0.2.35-1
libexif                 0.6.9-1
libfontconfig-devel     2.2.2-1
libfontconfig1          2.2.2-1
libfpx                  1.2.0.9-1
libfreetype2-devel      2.1.5-1
libfreetype26           2.1.5-1
libgc                   6.4-1
libgcrypt               1.2.1-1
libgd-devel             2.0.33-1
libgd2                  2.0.33-1
libgdbm                 1.8.0-5
libgdbm-devel           1.8.3-7
libgdbm3                1.8.3-3
libgdbm4                1.8.3-7
libgeotiff              1.2.2-1
libgeotiff-devel        1.2.2-1
libgeotiff1             1.2.2-1
libgettextpo0           0.14.1-1
libglade2               2.4.0-1
libgnome2               2.8.0-1
libgnomecanvas2         2.8.0-1
libgnomeprint22         2.8.0.1-1
libgnomeprintui22       2.8.0-1
libgnomeui2             2.8.0-1
libgpg-error            1.1-1
libGraphicsMagick-devel 1.0.6-1
libGraphicsMagick0      1.0.6-1
libguile12              1.6.7-1
libguile12abi13         1.6.4-3
libiconv                1.9.2-1
libiconv2               1.9.2-1
libIDL                  0.8.3-2
libintl                 0.10.38-3
libintl1                0.10.40-1
libintl2                0.12.1-3
libintl3                0.14.1-1
libjpeg62               6b-11
libjpeg6b               6b-8
libkpathsea3            2.0.2-15
libkpathsea3abi13       2.0.2-2
libkpathsea4            3.0.0-3
libltdl3                1.5.18-1
libMagick-devel         6.0.4-1
libMagick6              6.0.4-1
libmcrypt               2.5.7-2
libmcrypt-devel         2.5.7-2
libmng                  1.0.8-1
libncurses-devel        5.4-2
libncurses5             5.2-1
libncurses6             5.2-8
libncurses7             5.3-4
libncurses8             5.4-2
libneon24               0.24.7-1
libopenldap2            2.1.25-1
libopenldap2_2_7        2.2.26-1
libpcre                 4.1-1
libpcre0                4.5-1
libpng                  1.2.8-2
libpng10                1.0.18-2
libpng10-devel          1.0.18-2
libpng12                1.2.8-2
libpng12-devel          1.2.8-2
libpng2                 1.0.12-1
libpopt0                1.6.4-4
libproj-devel           4.4.8-1
libproj0                4.4.8-1
libreadline4            4.1-2
libreadline5            4.3-5
libreadline6            5.0-2
libsasl2                2.1.19-3
libsasl2-devel          2.1.19-3
libsmi                  0.4.2-1
libtiff-devel           3.7.3-1
libtiff3                3.6.0-2
libtiff4                3.6.0-5
libtiff5                3.7.3-1
libtool                 1.5b-2
libtool-devel           1.5.10-2
libtool-stable          1.4.3-3
libtool1.5              1.5.18-1
libungif                4.1.0-3
libwmf                  0.2.8.3-1
libwnck                 2.8.1-1
libxerces-c21           2.1.0-1
libxerces-c22           2.2.0-1
libxerces-c23           2.3.0-4
libxerces-c24           2.4.0-4
libxerces-c25           2.5.0-1
libXft                  2.1.6-1
libXft-devel            2.1.6-1
libXft1                 1.0.0-1
libXft2                 2.1.6-1
libxml2                 2.6.20-3
libxml2-devel           2.6.20-3
libxml2-doc             2.6.20-3
libxml2-python          2.6.20-3
libxslt                 1.1.14-2
lighttpd                1.3.0-1
lilypond                2.4.6-1
lilypond-doc            2.4.6-1
links                   0.99pre14-1
login                   1.9-7
lynx                    2.8.5-2
m4                      1.4.3-1
make                    3.80-1
man                     1.5p-1
mathomatic              12.4.3-1
mc                      4.6.1-2
mhash                   0.9.2-1
mhash-devel             0.9.1-1
mined                   2000.10-1
mingw                   20010917-1
mingw-bzip2             1.0.3-1
mingw-libbz2_1          1.0.3-1
mingw-runtime           3.7-1
mingw-zlib              1.2.2-2
minires                 1.00-1
minires-devel           1.00-1
mktemp                  1.5-3
more                    2.11o-1
mt                      2.3.1-1
mtd                     20050419-1
mutt                    1.4.2.1i-1
naim                    0.11.7.2-1
nano                    1.2.2-1
nasm                    0.98.39-1
ncftp                   3.1.7-1
ncurses                 5.4-2
ncurses-demo            5.4-2
nedit                   5.5-1
neon                    0.24.7-1
netcat                  1.10-2
newlib-man              20020801
nfs-server              2.3-2
ocaml                   3.08.1-1
octave                  2.1.71-1
octave-forge            2005.06.13-1
octave-headers          2.1.71-1
openbox                 0.99.1-4
opengl                  1.1.0-7
openjade                1.3.3-1
openldap                2.2.26-1
openldap-devel          2.2.26-1
OpenSP                  1.5.1-1
openssh                 4.1p1-2
openssl                 0.9.8-2
openssl-devel           0.9.8-2
openssl097              0.9.7g-1
ORBit2                  2.12.0-1
ORBit2-devel            2.12.0-1
pango                   1.6.0-2
pango-devel             1.6.0-2
pango-doc               1.6.0-2
pango-runtime           1.6.0-2
par                     1.52-1
patch                   2.5.8-8
patchutils              0.2.30-1
pcre                    4.5-1
pcre-devel              4.5-1
pcre-doc                4.5-1
pdksh                   5.2.14-3
perl                    5.8.7-3
perl-libwin32           0.191-4
perl-Win32-GUI          1.0-2
perl_manpages           5.8.7-3
pine                    4.58-1
pinfo                   0.6.8-1
ping                    1.0-1
pkgconfig               0.17.2-2
popt                    1.6.4-4
postgresql              7.4.5-1
pr3270                  3.2.20-1
procmail                3.22-10
procps                  3.2.5-1
proftpd                 1.2.10-1
proj                    4.4.8-1
psmisc                  21.5-1
psutils                 1.17-1
python                  2.4.1-1
rcs                     5.7-3
readline                5.0-2
rebase                  2.4.2-1
regex                   4.4-4
robots                  2.0-4
rpm                     4.1-2
rpm-build               4.1-1
rpm-doc                 4.1-1
rsync                   2.6.3-1
ruby                    1.8.2-2
rxvt                    2.7.10-6
s3270                   3.2.20-1
sed                     4.1.4-1
setsid                  0.0-3
sh-utils                2.0.15-5
shared-mime-info        0.15-1
sharutils               4.3.80-1
shutdown                1.7-1
splint                  3.1.1-1
squid                   2.4.STABLE7-1
ssmtp                   2.60.9-3
startup-notification    0.8-1
stow                    1.3.3-1
stunnel                 4.04-3
subversion              1.2.0-1
subversion-devel        1.2.0-1
subversion-python       1.2.0-1
suite3270               3.2.20-1
sunrpc                  4.0-3
SWI-Prolog              5.2.6-1
swig                    1.3.24-1
sysvinit                2.84-4
t1lib                   5.0.2-1
t1lib-x11               5.0.2-1
tar                     1.13.25-7
tcl3270                 3.2.20-1
tcltk                   20030901-1
tcm                     2.20-1
tcp_wrappers            7.6-1
tcsh                    6.14.00-4
termcap                 20050421-1
terminfo                5.4_20041009-1
tetex                   3.0.0-3
tetex-base              3.0.0-3
tetex-beta              20020911-1
tetex-bin               3.0.0-3
tetex-devel             3.0.0-3
tetex-doc               3.0.0-3
tetex-extra             3.0.0-3
tetex-tiny              3.0.0-3
tetex-x11               3.0.0-3
texinfo                 4.8-1
TeXmacs                 1.0.4-4
textutils               2.0.21-2
tidy                    041206-1
tiff                    3.7.3-1
time                    1.7-1
tin                     1.6.2-3
transfig                3.2.4-2
ttcp                    19980512-1
typespeed               0.4.4-1
tzcode                  2005h-1
ucl                     1.01-1
unison                  2.10.2-4
unison2.10.2            2.10.2-5
unison2.12.0            2.12.0-3
unison2.9.1             2.9.1-2
unison2.9.20            2.9.20-2
units                   1.77-1
unzip                   5.50-5
upx                     1.24-1
uw-imap                 2002e-3
uw-imap-imapd           2002e-3
uw-imap-util            2002e-3
vim                     6.3-1
w32api                  3.2-1
w3m                     0.5.1-1
wget                    1.9.1-2
which                   1.7-1
whois                   4.6.14-1
WindowMaker             0.90.0-2
WordNet                 2.0-1
wtf                     0.0.4-6
X-start-menu-icons      1.0.3-2
X-startup-scripts       1.0.10-4
x2x                     1.30-2
x3270                   3.2.20-1
Xaw3d                   1.5D-5
xemacs                  21.4.17-1
xemacs-emacs-common     21.4.17-1
xemacs-mule-sumo        2005-05-05-1
xemacs-sumo             2005-05-05-1
xemacs-tags             21.4.17-1
xerces-c                2.5.0-1
xerces-c-devel          2.5.0-1
xerces-c-doc            2.5.0-1
xfig                    3.2.4-6
xfig-bin                3.2.4-3
xfig-doc                3.2.4-2
xfig-etc                3.2.4-4
xfig-lib                3.2.4-6
xfig-man                3.2.4-2
XFree86-base            4.3.0-11
XFree86-bin             4.3.0-21
XFree86-bin-icons       4.3.0-7
XFree86-doc             4.3.0-2
XFree86-etc             4.3.0-12
XFree86-f100            4.3.0-2
XFree86-fcyr            4.3.0-2
XFree86-fenc            4.3.0-2
XFree86-fnts            4.3.0-2
XFree86-fscl            4.3.0-2
XFree86-fsrv            4.3.0-9
XFree86-html            4.3.0-10
XFree86-jdoc            4.3.0-2
XFree86-lib             4.3.0-3
XFree86-lib-compat      4.3.0-2
XFree86-man             4.3.0-10
XFree86-nest            4.3.0-8
XFree86-prog            4.3.0-21
XFree86-prt             4.3.0-6
XFree86-ps              4.3.0-2
XFree86-startup-scripts 4.3.0-1
XFree86-vfb             4.3.0-8
XFree86-xserv           4.3.0-68
XFree86-xwinclip        4.3.0-3
xgraph                  12.1-1
xinetd                  2.3.9-1
XmHTML                  1.1.7-1
xmlto                   0.0.18-1
xmon                    1.5.6-1
xorg-x11-base           6.8.2.0-1
xorg-x11-bin            6.8.2.0-1
xorg-x11-bin-dlls       6.8.2.0-1
xorg-x11-bin-lndir      6.8.2.0-1
xorg-x11-devel          6.8.2.0-2
xorg-x11-etc            6.8.2.0-1
xorg-x11-f100           6.8.1.0-3
xorg-x11-fcyr           6.8.1.0-2
xorg-x11-fenc           6.8.1.0-2
xorg-x11-fnts           6.8.1.0-3
xorg-x11-fscl           6.8.1.0-2
xorg-x11-fsrv           6.8.2.0-1
xorg-x11-libs-data      6.8.2.0-1
xorg-x11-man-pages      6.8.2.0-1
xorg-x11-man-pages-html 6.8.2.0-1
xorg-x11-nest           6.8.2.0-2
xorg-x11-vfb            6.8.2.0-2
xorg-x11-xwin           6.8.2.0-4
xorg-x11-xwin-gl        6.8.2.0-4
xpdf                    3.00-2
xpm-nox                 4.2.0-4
xterm                   202-1
xwinclip                1.2.0-1
xwinwm                  0.0.5-1
zip                     2.3-6
zlib                    1.2.2-2
zsh                     4.2.4-1
Use -h to see help about each section




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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