public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)
@ 2016-05-26 12:32 Tobias Zawada
  2016-05-26 15:48 ` William M. (Mike) Miller
  2016-05-26 17:48 ` Ken Brown
  0 siblings, 2 replies; 26+ messages in thread
From: Tobias Zawada @ 2016-05-26 12:32 UTC (permalink / raw)
  To: cygwin

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

Hello,
when debugging c-programs (the special program does not matter) with gud/gdb the
prompt "(gdb)"
is missing after the execution of the "start" command. This also happens with
other commands such as "next". Also variable values and outputs are not
correctly updated.
I do not have this problem under linux.

There was already a similar problem with the update of the gdb-interface:
https://www.cygwin.com/ml/cygwin/2015-06/msg00277.html
That thread has a dead end.

If one sets gdbmi-debug-mode to t one gets log messages in the Message buffer.
I guess from these messages that the gdb interface gets incomplete output from
gdb.
(Maybe a timing-issue?)

Reconstruction of the problem:

Create a small c-file "test.c" e.g.:
----------8<----------
#include <stdio.h>

int main() {
	int i=0;
	i=1;
	printf("%d\n",i);
	i=2;
	printf("%d\n",i);
	i=3;
	printf("%d\n",i);

	return 0;
}

/*
  Local Variables:
  compile-command: "gcc -g test.c -o a.exe;"
  End:
 */
---------->8----------

In the following all user input is marked with '>' at the line beginning:

>emacs -Q test.c
>M-x gdb-enable-debug
>M-: (setq gdbmi-debug-mode t)

>M-x gdb
>start

There follows the output of emacs after that input sequence.
Note that there is no final "(gdb)" prompt!

----------8<----------
Current directory is /temp/
GNU gdb (GDB) (Cygwin 7.10.1-1) 7.10.1
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-cygwin".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from a.exe...done.
(gdb) start
The target does not support running in non-stop mode.
---------->8----------

In the following output of the Message buffer note the lines
"gdbmi-bnf-incomplete-record-result, aborting: incomplete stream"!

>C-x b *Messages*

----------8<----------
For information about GNU Emacs and the GNU system, type C-h C-a.
Gdb-Enable-Debug mode enabled
t
gdb-input: 1-inferior-tty-set /dev/pty7
gdb-input: 2-gdb-set height 0
gdb-input: 3-gdb-set non-stop 1
gdb-input: 4-enable-pretty-printing
gdb-input: 5-file-list-exec-source-files
gdb-input: 6-file-list-exec-source-file
gdb-input: 7-gdb-show prompt
gdb-input: 8-stack-info-frame
gdb-input: 9-thread-info
gdb-input: 10-break-list
gdb-input: 11-thread-info
gdb-input: 12-break-list
gdbmi-bnf-result-record: =thread-group-added,
gdbmi-bnf-incomplete-record-result: id="i1"
gdbmi-bnf-stream-record: ~"GNU gdb (GDB) (Cygwin 7.10.1-1) 7.10.1\n"

gdbmi-bnf-stream-record: ~"Copyright (C) 2015 Free Software Foundation, Inc.\n"

gud-gdbmi-marker-filter, unparsed string: ~"License GPLv3+: GNU GPL version 3 or
later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to
change an
gdbmi-bnf-stream-record: ~"License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to
change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by
law.  Type \"show copying\"\nand \"show warranty\" for details.\n"

gdbmi-bnf-stream-record: ~"This GDB was configured as
\"x86_64-pc-cygwin\".\nType \"show configuration\" for configuration details."

gud-gdbmi-marker-filter, unparsed string: ~"\nFor bug 
gdbmi-bnf-stream-record: ~"\nFor bug reporting instructions, please see:\n"

gdbmi-bnf-stream-record: ~"<http://www.gnu.org/software/gdb/bugs/>.\n"

gdbmi-bnf-stream-record: ~"Find the GDB manual and other documentation resources
online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"

gdbmi-bnf-stream-record: ~"For help, type \"help\".\n"

gud-gdbmi-marker-filter, unparsed string: ~"Type \"apropos wor
gdbmi-bnf-stream-record: ~"Type \"apropos word\" to search for commands related
to \"word\"...\n"

gdbmi-bnf-result-record: =cmd-param-changed,
gdbmi-bnf-incomplete-record-result: param="extension-language",value=".y"
gdbmi-bnf-stream-record: ~"Reading symbols from a.exe..."

gdbmi-bnf-stream-record: ~"done.\n"

gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 1^done

gdb-input: 13-thread-info
gdb-input: 14-break-list
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 2^done

gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 3^done

gdb-input: 15-gdb-set target-async 1
gdb-input: 16-list-target-features
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 4^done

gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 5^done,
gdbmi-bnf-incomplete-record-result:
files=[{file="test.c",fullname="/cygdrive/c/temp/test.c"},{file="/usr/src/debug/gcc-5.3.0-5/libgcc/libgcc2.c",fullname="/usr/src/debug/gcc-5.3.0-5/libgcc/libgcc2.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/cygwin_attach_dll.c",fullnam
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
e="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/cygwin_attach_dll.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/pseudo-reloc-dummy.c",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/pseudo-reloc-dummy.c"},{file="/usr/src/debug/cyg
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
win-2.5.1-1/winsup/cygwin/lib/dll_main.cc",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/dll_main.cc"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/dll_entry.c",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/dll_entry.c"},{
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/_cygwin_crt0_common.cc",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/_cygwin_crt0_common.cc"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain3.c",fullname="/usr/src/debug/cyg
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
win-2.5.1-1/winsup/cygwin/lib/premain3.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain2.c",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain2.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain1.c",fullname
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain1.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain0.c",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain0.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
cygwin_crt0.c",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/cygwin_crt0.c"},{file="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/crt0.c",fullname="/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/crt0.c"}]
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 6^done,
gdbmi-bnf-incomplete-record-result: line="1",file="test.c",fullnam
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result: e="/cygdrive/c/temp/test.c",macro-info="0"
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 7^done,
gdbmi-bnf-incomplete-record-result: value="(gdb) "
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 8^error,
gdbmi-bnf-incomplete-record-result: msg="No registers."
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 9^done,
gdbmi-bnf-incomplete-record-result: threads=[]
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 10^done,
gdbmi-bnf-incomplete-record-result:
BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{widt
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
h="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result: col_name="what",colhdr="What"}],body=[]}
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 11^done,
gdbmi-bnf-incomplete-record-result: threads=[]
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 12^done,
gdbmi-bnf-incomplete-record-result:
BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",a
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
lignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[]}
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 13^done,
gdbmi-bnf-incomplete-record-result: threads=[
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result: ]
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 14^done,
gdbmi-bnf-incomplete-record-result:
BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[]}
gdb-input: 17-stack-info-frame
gdb-input: 18-thread-info
gdb-input: 19-break-list
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 15^done

gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 16^done,
gdbmi-bnf-incomplete-record-result: features=[]
Target doesn't support non-stop mode.  Turning it off.
gdb-input: 20-gdb-set non-stop 0
gdbmi-bnf-gdb-prompt: (gdb) 

gud-gdbmi-marker-filter, unparsed string: &"The target does not support running
in non-stop
gdbmi-bnf-stream-record: &"The target does not support running in non-stop
mode.\n"

gdbmi-bnf-result-record: ^error,
gdbmi-bnf-incomplete-record-result: msg="The target does not support running in
non-stop mode."
The target does not support running in non-stop mode.
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 17^error,
gdbmi-bnf-incomplete-record-result: msg="No registers."
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 18^done,
gdbmi-bnf-incomplete-record-result: threads=[]
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 19^done,
gdbmi-bnf-incomplete-record-result:
BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignme
gdbmi-bnf-incomplete-record-result, aborting: incomplete stream
gdbmi-bnf-incomplete-record-result:
nt="2",col_name="what",colhdr="What"}],body=[]}
gdbmi-bnf-gdb-prompt: (gdb) 

gdbmi-bnf-result-record: 20^done

gdbmi-bnf-gdb-prompt: (gdb) 
---------->8----------

Last but not least the content of the debug variable gdb-debug-log.
This is a queque. The most recent cell is at the beginning.
Note the crippled received input string at the beginning!

>C-h v gdb-debug-log

----------8<----------
Value: ((recv . "nt=\"2\",col_name=\"what\",colhdr=\"What\"}],body=[]}\n(gdb)
\n20^done\n(gdb) \n")
 (recv .
"},{width=\"14\",alignment=\"-1\",col_name=\"type\",colhdr=\"Type\"},{width=\"4\",alignment=\"-1\",col_name=\"disp\",colhdr=\"Disp\"},{width=\"3\",alignment=\"-1\",col_name=\"enabled\",colhdr=\"Enb\"},{width=\"10\",alignment=\"-1\",col_name=\"addr\",colhdr=\"Address\"},{width=\"40\",alignme")
 (recv . " mode.\\n\"\n^error,msg=\"The target does not support running in
non-stop mode.\"\n(gdb) \n17^error,msg=\"No registers.\"\n(gdb)
\n18^done,threads=[]\n(gdb)
\n19^done,BreakpointTable={nr_rows=\"0\",nr_cols=\"6\",hdr=[{width=\"7\",alignment=\"-1\",col_name=\"number\",colhdr=\"Num\"")
 (send-item "20-gdb-set non-stop 0" ignore)
 (send-item "19-break-list"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *breakpoints of a.exe*>
				   (apply 'gdb-breakpoints-list-handler args))))
 (send-item "18-thread-info"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *threads of a.exe*>
				   (apply 'gdb-thread-list-handler args))))
 (send-item "17-stack-info-frame" gdb-frame-handler)
 (recv .
"_name=\"enabled\",colhdr=\"Enb\"},{width=\"10\",alignment=\"-1\",col_name=\"addr\",colhdr=\"Address\"},{width=\"40\",alignment=\"2\",col_name=\"what\",colhdr=\"What\"}],body=[]}\n(gdb)
\n15^done\n(gdb) \n16^done,features=[]\n(gdb) \n&\"The target does not support
running in non-stop")
 (recv .
"14^done,BreakpointTable={nr_rows=\"0\",nr_cols=\"6\",hdr=[{width=\"7\",alignment=\"-1\",col_name=\"number\",colhdr=\"Num\"},{width=\"14\",alignment=\"-1\",col_name=\"type\",colhdr=\"Type\"},{width=\"4\",alignment=\"-1\",col_name=\"disp\",colhdr=\"Disp\"},{width=\"3\",alignment=\"-1\",col")
 (mi-send .
	  #("-interpreter-exec console \"start \"\n" 27 32
	    (fontified t)))
 (recv . "]\n(gdb) \n")
 (recv .
"lignment=\"-1\",col_name=\"disp\",colhdr=\"Disp\"},{width=\"3\",alignment=\"-1\",col_name=\"enabled\",colhdr=\"Enb\"},{width=\"10\",alignment=\"-1\",col_name=\"addr\",colhdr=\"Address\"},{width=\"40\",alignment=\"2\",col_name=\"what\",colhdr=\"What\"}],body=[]}\n(gdb)
\n13^done,threads=[")
 (recv . "col_name=\"what\",colhdr=\"What\"}],body=[]}\n(gdb)
\n11^done,threads=[]\n(gdb)
\n12^done,BreakpointTable={nr_rows=\"0\",nr_cols=\"6\",hdr=[{width=\"7\",alignment=\"-1\",col_name=\"number\",colhdr=\"Num\"},{width=\"14\",alignment=\"-1\",col_name=\"type\",colhdr=\"Type\"},{width=\"4\",a")
 (recv .
"h=\"14\",alignment=\"-1\",col_name=\"type\",colhdr=\"Type\"},{width=\"4\",alignment=\"-1\",col_name=\"disp\",colhdr=\"Disp\"},{width=\"3\",alignment=\"-1\",col_name=\"enabled\",colhdr=\"Enb\"},{width=\"10\",alignment=\"-1\",col_name=\"addr\",colhdr=\"Address\"},{width=\"40\",alignment=\"2\",")
 (recv . "e=\"/cygdrive/c/temp/test.c\",macro-info=\"0\"\n(gdb)
\n7^done,value=\"(gdb) \"\n(gdb) \n8^error,msg=\"No registers.\"\n(gdb)
\n9^done,threads=[]\n(gdb)
\n10^done,BreakpointTable={nr_rows=\"0\",nr_cols=\"6\",hdr=[{width=\"7\",alignment=\"-1\",col_name=\"number\",colhdr=\"Num\"},{widt")
 (recv .
"cygwin_crt0.c\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/cygwin_crt0.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/crt0.c\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/crt0.c\"}]\n(gdb)
\n6^done,line=\"1\",file=\"test.c\",fullnam")
 (recv .
"=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain1.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain0.c\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain0.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/")
 (recv .
"win-2.5.1-1/winsup/cygwin/lib/premain3.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain2.c\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain2.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain1.c\",fullname")
 (recv .
"file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/_cygwin_crt0_common.cc\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/_cygwin_crt0_common.cc\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/premain3.c\",fullname=\"/usr/src/debug/cyg")
 (recv .
"win-2.5.1-1/winsup/cygwin/lib/dll_main.cc\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/dll_main.cc\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/dll_entry.c\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/dll_entry.c\"},{")
 (recv .
"e=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/cygwin_attach_dll.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/pseudo-reloc-dummy.c\",fullname=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/pseudo-reloc-dummy.c\"},{file=\"/usr/src/debug/cyg")
 (recv .
"5^done,files=[{file=\"test.c\",fullname=\"/cygdrive/c/temp/test.c\"},{file=\"/usr/src/debug/gcc-5.3.0-5/libgcc/libgcc2.c\",fullname=\"/usr/src/debug/gcc-5.3.0-5/libgcc/libgcc2.c\"},{file=\"/usr/src/debug/cygwin-2.5.1-1/winsup/cygwin/lib/cygwin_attach_dll.c\",fullnam")
 (send-item "16-list-target-features" gdb-check-target-async)
 (send-item "15-gdb-set target-async 1" ignore)
 (recv . "2^done\n(gdb) \n3^done\n(gdb) \n4^done\n(gdb) \n")
 (send-item "14-break-list"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *breakpoints of a.exe*>
				   (apply 'gdb-breakpoints-list-handler args))))
 (send-item "13-thread-info"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *threads of a.exe*>
				   (apply 'gdb-thread-list-handler args))))
 (recv . "d\\\" to search for commands related to
\\\"word\\\"...\\n\"\n=cmd-param-changed,param=\"extension-language\",value=\".y\"\n~\"Reading
symbols from a.exe...\"\n~\"done.\\n\"\n(gdb) \n1^done\n(gdb) \n")
 (recv . "reporting instructions, please
see:\\n\"\n~\"<http://www.gnu.org/software/gdb/bugs/>.\\n\"\n~\"Find the GDB
manual and other documentation resources online
at:\\n<http://www.gnu.org/software/gdb/documentation/>.\\n\"\n~\"For help, type
\\\"help\\\".\\n\"\n~\"Type \\\"apropos wor")
 (recv . "d redistribute it.\\nThere is NO WARRANTY, to the extent permitted by
law.  Type \\\"show copying\\\"\\nand \\\"show warranty\\\" for
details.\\n\"\n~\"This GDB was configured as \\\"x86_64-pc-cygwin\\\".\\nType
\\\"show configuration\\\" for configuration details.\"\n~\"\\nFor bug ")
 (recv . "=thread-group-added,id=\"i1\"\n~\"GNU gdb (GDB) (Cygwin 7.10.1-1)
7.10.1\\n\"\n~\"Copyright (C) 2015 Free Software Foundation,
Inc.\\n\"\n~\"License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>\\nThis is free software: you are free to
change an")
 (send-item "12-break-list"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *breakpoints of a.exe*>
				   (apply 'gdb-breakpoints-list-handler args))))
 (send-item "11-thread-info"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *threads of a.exe*>
				   (apply 'gdb-thread-list-handler args))))
 (send-item "10-break-list"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *breakpoints of a.exe*>
				   (apply 'gdb-breakpoints-list-handler args))))
 (send-item "9-thread-info"
	    (lambda
	      (&rest args)
	      (with-current-buffer #<buffer *threads of a.exe*>
				   (apply 'gdb-thread-list-handler args))))
 (send-item "8-stack-info-frame" gdb-frame-handler)
 (send-item "7-gdb-show prompt" gdb-get-prompt)
 (send-item "6-file-list-exec-source-file" gdb-get-source-file)
 (send-item "5-file-list-exec-source-files" gdb-get-source-file-list)
 (send-item "4-enable-pretty-printing" ignore)
 (send-item "3-gdb-set non-stop 1" gdb-non-stop-handler)
 (send-item "2-gdb-set height 0" ignore)
 (send-item "1-inferior-tty-set /dev/pty7" ignore))
---------->8----------

That is about as far as I get with my limited time frame.
I would be extremely pleased if someone with more insider knowledge of gdbmi and
cygwin-processes could take on the challange! I need the debugger for production
and the missing update is rather disturbing.

Best regards,
Tobias

[-- Attachment #2: cygcheck.out --]
[-- Type: application/octet-stream, Size: 190592 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Thu May 26 10:40:35 2016

Windows 7 Professional Ver 6.1 Build 7601 Service Pack 1

Path:	C:\Users\Tobias.Zawada\bin
	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\ProgramData\Oracle\Java\javapath
	C:\Program Files (x86)\ImageMagick-6.8.8-Q16
	C:\Program Files\ImageMagick-6.7.8-Q16
	C:\Windows\system32
	C:\Windows
	C:\Windows\System32\Wbem
	C:\Windows\System32\WindowsPowerShell\v1.0
	C:\Program Files\GetDP
	C:\Program Files (x86)\gmsh
	C:\Program Files\MATLAB\MATLAB Compiler Runtime\v79\runtime\win64
	C:\Program Files\PTC\Creo Elements\Pro5.0\bin
	C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86
	C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64
	C:\Program Files (x86)\VisualSVN\bin
	C:\Program Files (x86)\Bazaar
	C:\Program Files\Microsoft SQL Server\110\Tools\Binn
	C:\Program Files (x86)\GNU\GnuPG\pub
	C:\Program Files\TortoiseSVN\bin
	C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit
	C:\Program Files\Microsoft SQL Server\120\Tools\Binn
	C:\Program Files\TortoiseGit\bin
	T:\Testmodels\libraries\NumenGo\bin\win32
	T:\Testmodels\libraries\NumenGo_newRepo_ask_SBR\bin\win64
	%NUMENGO%\bin\win32
	C:\Program Files\Microsoft\ Visual\ Studio\ 8\VC\bin\
	C:\Program Files\Microsoft\ Visual\ Studio\ 8\VC\lib\
	C:\cygwin64\usr\local\msbin
	C:\spice_win\bin
	C:\OpenModelica1.4.5\bin
	C:\cygwin64\lib\lapack

Output from C:\cygwin64\bin\id.exe
UID: 1051397(Tobias.Zawada)
GID: 1049089(Domänen-Benutzer)
1049089(Domänen-Benutzer)
545(Benutzer)
559(Leistungsprotokollbenutzer)
555(Remotedesktopbenutzer)
4(INTERAKTIV)
66049(KONSOLENANMELDUNG)
11(Authentifizierte Benutzer)
15(Diese Organisation)
4095(CurrentSession)
66048(LOKAL)
1065276(ITI_Software-IT)
1065187(vpn-trusted)
1065265(ITI_Software-IT_Software)
1051752(TestUsers)
1065245(owncloud)
1051288(iti_Ingenieure)
1051282(iti_Entwickler)
1051287(iti_HQ)
1065237(iti_Disclaimer)
1051281(iti)
1051285(iti_FuE)
1050016(iti_FuE)
1049851(iti)
1049853(iti_HQ)
1049854(iti_Ingenieure)
1049855(iti_Entwickler)
70145(Von der Authentifizierungsstelle bestätigte ID)
1049576(WinRMRemoteWMIUsers__)
1051413(duplicati-1)
401408(Mittlere Verbindlichkeitsstufe)

SysDir: C:\Windows\system32
WinDir: C:\Windows

LIBRARY_PATH = '/usr/local/lib:/cygdrive/c/Users/Tobias.Zawada/lib'
C_INCLUDE_PATH = '/usr/local/include:/cygdrive/c/Users/Tobias.Zawada/include'
PWD = '/temp'
CYGWIN = 'winsymlinks:lnk'
HOME = '/cygdrive/c/Users/Tobias.Zawada'

HOMEPATH = '\'
TESTLIB = '/cygdrive/t/Testmodels/Libraries/'
APPDATA = 'C:\Users\tobias.zawada\AppData\Roaming'
ProgramW6432 = 'C:\Program Files'
LIT = 'e:/home/naehring/Lit'
BLENDER_USER_SCRIPTS = 'c:/Benutzer/naehring/Weiterbildung/Soft/Blender/Scripts/'
NUMENGO = 'T:\TESTMO~1\LIBRAR~1\NUMENG~2\numengo'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 42 Stepping 7, GenuineIntel'
TERM = 'cygwin'
VS80COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\Tools\'
WINDIR = 'C:\Windows'
H = '/c/home/naehring'
IGNOREEOF = '10000'
OPENMODELICAHOME = 'E:\OpenModelica1.9.2\'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/usr/bin'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
USERDOMAIN = 'DD1'
ALLUSERSPROFILE = 'C:\ProgramData'
OS = 'Windows_NT'
SIMX = '/c/ITI-Projekte/SimX'
P = '/c/ITI-Projekte'
windows_tracing_flags = '3'
!:: = '::\'
MODELICAPATH = 'c:/ITI-Projekte/ModelicaLibraries/Libraries 3.0.1'
windows_tracing_logfile = 'C:\BVTBin\Tests\installpackage\csilogfile.log'
HELPDESK = '/cygdrive/c/Users/Tobias.Zawada/Helpdesk'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
TEMP = '/cygdrive/c/Users/TOBIAS~1.ZAW/AppData/Local/Temp'
G_SLICE = 'always-malloc'
CPATH = '/usr/local/include'
MS_OFFICE_PATH = 'C:/Program Files/Microsoft Office 15/root/office15/'
W = '/media/HOME/Work/'
PSA = '//itiserver04/Company/ITI-Portal/Projects/PSA/'
USERNAME = 'Tobias.Zawada'
ORD = '/c/ITI-Projekte/ITI_OrderAna'
SCINAEHRING = 'c:\Benutzer\Naehring\Weiterbildung\Soft\Scilab'
PROCESSOR_LEVEL = '6'
SIMX36 = '/e/ITI-Projekte/SimX3.6'
REFLIB = '/cygdrive/t/Referencemodels/Libraries/'
HD = '/cygdrive/c/Users/Tobias.Zawada/Helpdesk'
ProgramFiles(x86) = 'C:\Program Files (x86)'
OPENMODELICALIBRARY = 'E:\OpenModelica1.9.2\lib\omlibrary'
PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'
XWINLOGFILE = '/var/log/xwin/XWin.0.log'
SIMX35 = '/c/ITI-Projekte/SimX3.5'
TESTSETS = '/cygdrive/t/Infrastructure/Templates/TestSetsOfficial/'
MODELICAHELPPATH = '/Company/ITI-Daten/Modelica/Specifications/'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
EDITOR = 'emacs -Q '
ITI_MSWORD_TEMPLATES = '/Company/ITI-Portal/Templates'
LANG = 'en_US.UTF-8'
USERPROFILE = 'C:\Users\tobias.zawada'
VS120COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\'
BOOST_BUILD_PATH = '/usr/local/share/boost-build'
SIMXHELP = '/c/ITI-Projekte/SimXHelp'
FEST = '/cygdrive/y/ITI-Daten/ITI-Veranstaltungen/2015/10_Kolloquium_NichtelektrischeNetzwerke_TUD/Paper/'
LOGONSERVER = '\\VS-DC-1'
PAPERSIZE = 'A4'
CommonProgramW6432 = 'C:\Program Files\Common Files'
LOCALAPPDATA = 'C:\Users\tobias.zawada\AppData\Local'
PROCESSOR_ARCHITECTURE = 'AMD64'
TEXINPUTS = '/c/home/naehring/texmf//:/cygdrive/c/Users/Tobias.Zawada/texmf//:'
ProgramData = 'C:\ProgramData'
EXECIGNORE = '*.dll'
SHLVL = '2'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
USERDNSDOMAIN = 'DD1.ITI.LOCAL'
HOMEDRIVE = 'Z:'
TEXTE = '/c/home/Texte'
COMSPEC = 'C:\Windows\system32\cmd.exe'
PYTHONPATH = 'C:\Users\tobias.zawada\Weiterbildung\Soft\Blender\Scripts'
SYSTEMROOT = 'C:\Windows'
TMP = '/cygdrive/c/Users/TOBIAS~1.ZAW/AppData/Local/Temp'
BOOST_ROOT = '/usr/local'
PROCESSOR_REVISION = '2a07'
BOWDE = '/c/ITI-Projekte/Bowde'
VS100COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\'
PKG_CONFIG_PATH = '/usr/lib/pkgconfig:/usr/local/lib/pkgconfig'
PROGRAMFILES = 'C:\Program Files'
ALTERNATE_EDITOR = 'emacs -Q '
HOMESHARE = '\\vs-itiserver-1\Users\Tobias.Zawada'
VS140COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\'
DISPLAY = ':0.0'
NUMBER_OF_PROCESSORS = '8'
SMS20 = '/Company/ITI-Daten/ITI_Förder_Verbundprojekte/SMS2.0/'
NO_AT_BRIDGE = '1'
LOCATION = 'ITI'
SESSIONNAME = 'Console'
COMPUTERNAME = 'RECHNER88'
SIMXDOC = '/c/ITI-Projekte/SimXDoc'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Console\Cygwin64 Rebase All
  (default) = 0x00000007
  PopupColors = 0x000000f5
  ColorTable00 = 0x00000000
  ColorTable01 = 0x00800000
  ColorTable02 = 0x00008000
  ColorTable03 = 0x00808000
  ColorTable04 = 0x00000080
  ColorTable05 = 0x00800080
  ColorTable06 = 0x00008080
  ColorTable07 = 0x00c0c0c0
  ColorTable08 = 0x00808080
  ColorTable09 = 0x00ff0000
  ColorTable10 = 0x0000ff00
  ColorTable11 = 0x00ffff00
  ColorTable12 = 0x000000ff
  ColorTable13 = 0x00ff00ff
  ColorTable14 = 0x0000ffff
  ColorTable15 = 0x00ffffff
  InsertMode = 0x00000001
  QuickEdit = 0x00000000
  ScreenBufferSize = 0x012c0050
  WindowSize = 0x00190050
  FontSize = 0x000c0008
  FontFamily = 0x00000030
  FontWeight = 0x00000190
  FaceName = 'Terminal'
  CursorSize = 0x00000019
  HistoryBufferSize = 0x00000032
  NumberOfHistoryBuffers = 0x00000004
  HistoryNoDup = 0x00000000
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) = 'C:'
  unix = '/'
  fbinary = 0x00000000
  fsilent = 0x00000000
HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
  46a8ae43d4b2f7d3 = '\??\C:\ITI-Projekte\SimX\Application\Tools'
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\c:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'c:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\05
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\06
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\07
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\08
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\09
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0A
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0B
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0C
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0D
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0E
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0F
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\10
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\11
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\12
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\13
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\14
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\15
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\16
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\17
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\18
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\19
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1A
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1B
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1C
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1D
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Installations
  (default) = '\??\c:\ITI-Projekte_no_Backup\Tools'
  6ed46315932c5315 = '\??\C:\cygwin1.7'
  7fe0d297b85e27d2 = '\??\c:\ITI-Projekte-NoBackup\Tools'
  6e2153764fac7e50 = '\??\e:\ITI-Projekte-NoBackup\Tools'
  aa973c7e5c2753d2 = '\??\E:\ITI-Projekte\SimX3.6\Tools'
  ac07936b3c784dff = '\??\C:\ITI-Projekte\SimX\Tools'
  9cb329a1e723ec27 = '\??\E:\ITI-Projekte\SimX3.7\Application\Tools'
  46a8ae43d4b2f7d3 = '\??\C:\ITI-Projekte\SimX\Application\Tools'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\setup
  (default) = 'c:\cygwin1.7'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: e022582115c10879 Path: c:\cygwin64
  User:   Key: e022582115c10879 Path: C:\cygwin64
  User:   Key: 46a8ae43d4b2f7d3 Path: C:\ITI-Projekte\SimX\Application\Tools

c:  hd  NTFS    228833Mb  83% CP CS UN PA FC     CRUZER
d:  cd             N/A    N/A                    
e:  hd  NTFS    476939Mb  72% CP CS UN PA FC     Thoshiba500
f:  fd  FAT32    30211Mb  23% CP    UN           HOME
g:  hd  exFAT   114466Mb  67% CP    UN           TOZ
n:  net NTFS   2097021Mb  91% CP CS UN PA FC     Data-1
s:  net NTFS   3810230Mb  30% CP CS UN PA        Data
t:  net NTFS   2097021Mb  91% CP CS UN PA FC     Data-1
x:  net NTFS    703872Mb  82% CP CS UN PA FC     DLO Device (D)
y:  net NTFS   2097021Mb  91% CP CS UN PA FC     Data-1
z:  net NTFS   2097021Mb  91% CP CS UN PA FC     Data-1

Warning: Mount entries should not have a trailing (back)slash

\\Rechner81\Platte_c  /BuildRechner  user    binary,noacl,posix=0
t:\                   /Test          user    binary,noacl,posix=0
c:\tmp                /tmp           user    binary,noacl,posix=0
C:\cygwin64           /              system  binary,auto
C:\cygwin64\bin       /usr/bin       system  binary,auto
C:\cygwin64\lib       /usr/lib       system  binary,auto
cygdrive prefix       /cygdrive      user    binary,noacl,posix=0,auto

Found: C:\cygwin64\bin\awk
 -> C:\cygwin64\bin\gawk.exe
Found: C:\cygwin64\bin\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\cygwin64\bin\cp.exe
Found: C:\cygwin64\bin\cpp.exe
Not Found: crontab
Found: C:\cygwin64\bin\find.exe
Found: C:\Windows\system32\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\Windows\system32\find.exe
Found: C:\cygwin64\bin\gcc.exe
Found: C:\cygwin64\bin\gdb.exe
Found: C:\cygwin64\bin\grep.exe
Found: C:\cygwin64\bin\kill.exe
Found: C:\cygwin64\bin\ld.exe
Found: C:\cygwin64\bin\ls.exe
Found: C:\cygwin64\bin\make.exe
Found: C:\cygwin64\bin\mv.exe
Found: C:\cygwin64\bin\patch.exe
Found: C:\cygwin64\bin\perl.exe
Found: C:\cygwin64\bin\rm.exe
Found: C:\cygwin64\bin\sed.exe
Found: C:\cygwin64\bin\ssh.exe
Found: C:\cygwin64\bin\sh.exe
Found: C:\cygwin64\bin\tar.exe
Found: C:\cygwin64\bin\test.exe
Found: C:\cygwin64\bin\vi.exe
Not Found: vim

   37k 2013/07/14 C:\cygwin64\bin\cygamd-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygamd-0.dll" v0.0 ts=2013-07-14 16:25
   38k 2016/03/11 C:\cygwin64\bin\cygamd-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygamd-1.dll" v0.0 ts=2016-03-11 11:14
   53k 2013/11/01 C:\cygwin64\bin\cyganthy-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyganthy-0.dll" v0.0 ts=2013-11-01 07:21
  249k 2013/11/01 C:\cygwin64\bin\cyganthydic-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyganthydic-0.dll" v0.0 ts=2013-11-01 07:20
   51k 2013/11/01 C:\cygwin64\bin\cyganthyinput-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyganthyinput-0.dll" v0.0 ts=2013-11-01 07:21
  154k 2015/05/23 C:\cygwin64\bin\cygapr-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygapr-1-0.dll" v0.0 ts=2015-05-23 03:30
  128k 2015/05/23 C:\cygwin64\bin\cygaprutil-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygaprutil-1-0.dll" v0.0 ts=2015-05-23 04:31
  578k 2015/06/01 C:\cygwin64\bin\cygarchive-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygarchive-13.dll" v0.0 ts=2015-06-01 23:04
   38k 2013/07/19 C:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2013-07-19 16:07
  296k 2016/04/03 C:\cygwin64\bin\cygarpack-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygarpack-0.dll" v0.0 ts=2016-04-03 19:06
   92k 2013/05/30 C:\cygwin64\bin\cygart_lgpl_2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygart_lgpl_2-2.dll" v0.0 ts=2013-05-31 01:00
  510k 2014/03/20 C:\cygwin64\bin\cygasn1-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygasn1-8.dll" v0.0 ts=2014-03-20 04:54
  643k 2013/04/30 C:\cygwin64\bin\cygaspell-15.dll - os=4.0 img=0.0 sys=5.2
                  "cygaspell-15.dll" v0.0 ts=2013-04-30 09:11
   20k 2013/06/03 C:\cygwin64\bin\cygasyncns-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygasyncns-0.dll" v0.0 ts=2013-06-03 21:41
  117k 2015/11/15 C:\cygwin64\bin\cygatk-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygatk-1.0-0.dll" v0.0 ts=2015-11-15 03:34
  159k 2015/11/15 C:\cygwin64\bin\cygatk-bridge-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygatk-bridge-2.0-0.dll" v0.0 ts=2015-11-15 03:47
   88k 2016/04/17 C:\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygatomic-1.dll" v0.0 ts=2016-04-17 15:33
  147k 2015/11/15 C:\cygwin64\bin\cygatspi-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygatspi-0.dll" v0.0 ts=2015-11-15 03:42
   16k 2013/03/26 C:\cygwin64\bin\cygattr-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygattr-1.dll" v0.0 ts=2013-03-26 18:26
   80k 2013/05/30 C:\cygwin64\bin\cygaudio-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygaudio-2.dll" v0.0 ts=2013-05-31 00:41
  177k 2016/05/04 C:\cygwin64\bin\cygautotrace-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygautotrace-3.dll" v0.0 ts=2016-05-05 00:00
   59k 2013/06/04 C:\cygwin64\bin\cygavahi-client-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygavahi-client-3.dll" v0.0 ts=2013-06-04 06:29
   42k 2013/06/04 C:\cygwin64\bin\cygavahi-common-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygavahi-common-3.dll" v0.0 ts=2013-06-04 06:28
   13k 2013/06/04 C:\cygwin64\bin\cygavahi-glib-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygavahi-glib-1.dll" v0.0 ts=2013-06-04 06:29
25262k 2016/03/16 C:\cygwin64\bin\cygblas-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygblas-0.dll" v0.0 ts=2016-03-16 18:18
  180k 2015/03/23 C:\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 09:46
  368k 2013/05/30 C:\cygwin64\bin\cygbonobo-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygbonobo-2-0.dll" v0.0 ts=2013-05-31 01:16
   84k 2013/05/30 C:\cygwin64\bin\cygbonobo-activation-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygbonobo-activation-4.dll" v0.0 ts=2013-05-31 01:16
  351k 2013/06/04 C:\cygwin64\bin\cygbonoboui-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygbonoboui-2-0.dll" v0.0 ts=2013-06-04 19:37
    9k 2015/03/17 C:\cygwin64\bin\cygboost_atomic-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_atomic-1_55.dll" v0.0 ts=2015-03-17 03:43
    9k 2015/05/06 C:\cygwin64\bin\cygboost_atomic-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_atomic-1_57.dll" v0.0 ts=2015-05-06 02:26
    9k 2015/10/14 C:\cygwin64\bin\cygboost_atomic-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_atomic-1_58.dll" v0.0 ts=2015-10-14 09:57
    7k 2013/05/29 C:\cygwin64\bin\cygboost_atomic-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_atomic-mt-1_53.dll" v0.0 ts=2013-05-30 00:31
   23k 2015/03/17 C:\cygwin64\bin\cygboost_chrono-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_chrono-1_55.dll" v0.0 ts=2015-03-17 03:43
   23k 2015/05/06 C:\cygwin64\bin\cygboost_chrono-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_chrono-1_57.dll" v0.0 ts=2015-05-06 02:26
   23k 2015/10/14 C:\cygwin64\bin\cygboost_chrono-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_chrono-1_58.dll" v0.0 ts=2015-10-14 09:57
   24k 2013/05/29 C:\cygwin64\bin\cygboost_chrono-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_chrono-mt-1_53.dll" v0.0 ts=2013-05-30 00:31
   67k 2015/05/06 C:\cygwin64\bin\cygboost_container-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_container-1_57.dll" v0.0 ts=2015-05-06 02:26
   67k 2015/10/14 C:\cygwin64\bin\cygboost_container-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_container-1_58.dll" v0.0 ts=2015-10-14 09:57
    9k 2015/03/17 C:\cygwin64\bin\cygboost_context-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_context-1_55.dll" v0.0 ts=2015-03-17 03:43
    9k 2015/05/06 C:\cygwin64\bin\cygboost_context-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_context-1_57.dll" v0.0 ts=2015-05-06 02:26
   37k 2015/10/14 C:\cygwin64\bin\cygboost_context-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_context-1_58.dll" v0.0 ts=2015-10-14 09:57
   17k 2015/03/17 C:\cygwin64\bin\cygboost_coroutine-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_coroutine-1_55.dll" v0.0 ts=2015-03-17 03:43
   39k 2015/05/06 C:\cygwin64\bin\cygboost_coroutine-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_coroutine-1_57.dll" v0.0 ts=2015-05-06 02:26
   39k 2015/10/14 C:\cygwin64\bin\cygboost_coroutine-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_coroutine-1_58.dll" v0.0 ts=2015-10-14 09:57
   52k 2015/03/17 C:\cygwin64\bin\cygboost_date_time-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_date_time-1_55.dll" v0.0 ts=2015-03-17 03:43
   52k 2015/05/06 C:\cygwin64\bin\cygboost_date_time-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_date_time-1_57.dll" v0.0 ts=2015-05-06 02:26
   52k 2015/10/14 C:\cygwin64\bin\cygboost_date_time-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_date_time-1_58.dll" v0.0 ts=2015-10-14 09:57
   49k 2013/05/29 C:\cygwin64\bin\cygboost_date_time-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_date_time-mt-1_53.dll" v0.0 ts=2013-05-30 00:31
   83k 2015/03/17 C:\cygwin64\bin\cygboost_filesystem-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_filesystem-1_55.dll" v0.0 ts=2015-03-17 03:43
   86k 2015/05/06 C:\cygwin64\bin\cygboost_filesystem-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_filesystem-1_57.dll" v0.0 ts=2015-05-06 02:26
   85k 2015/10/14 C:\cygwin64\bin\cygboost_filesystem-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_filesystem-1_58.dll" v0.0 ts=2015-10-14 09:57
   83k 2013/05/29 C:\cygwin64\bin\cygboost_filesystem-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_filesystem-mt-1_53.dll" v0.0 ts=2013-05-30 00:31
  265k 2015/03/17 C:\cygwin64\bin\cygboost_graph-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_graph-1_55.dll" v0.0 ts=2015-03-17 03:44
  273k 2015/05/06 C:\cygwin64\bin\cygboost_graph-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_graph-1_57.dll" v0.0 ts=2015-05-06 02:27
  274k 2015/10/14 C:\cygwin64\bin\cygboost_graph-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_graph-1_58.dll" v0.0 ts=2015-10-14 09:58
  255k 2013/05/29 C:\cygwin64\bin\cygboost_graph-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_graph-mt-1_53.dll" v0.0 ts=2013-05-30 00:32
   89k 2015/03/17 C:\cygwin64\bin\cygboost_iostreams-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_iostreams-1_55.dll" v0.0 ts=2015-03-17 03:44
   89k 2015/05/06 C:\cygwin64\bin\cygboost_iostreams-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_iostreams-1_57.dll" v0.0 ts=2015-05-06 02:27
   89k 2015/10/14 C:\cygwin64\bin\cygboost_iostreams-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_iostreams-1_58.dll" v0.0 ts=2015-10-14 09:59
   92k 2013/05/29 C:\cygwin64\bin\cygboost_iostreams-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_iostreams-mt-1_53.dll" v0.0 ts=2013-05-30 00:32
  709k 2015/03/17 C:\cygwin64\bin\cygboost_locale-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_locale-1_55.dll" v0.0 ts=2015-03-17 03:47
  690k 2015/05/06 C:\cygwin64\bin\cygboost_locale-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_locale-1_57.dll" v0.0 ts=2015-05-06 02:28
  691k 2015/10/14 C:\cygwin64\bin\cygboost_locale-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_locale-1_58.dll" v0.0 ts=2015-10-14 09:59
  670k 2013/05/29 C:\cygwin64\bin\cygboost_locale-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_locale-mt-1_53.dll" v0.0 ts=2013-05-30 00:33
  635k 2015/03/17 C:\cygwin64\bin\cygboost_log-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_log-1_55.dll" v0.0 ts=2015-03-17 03:46
  704k 2015/05/06 C:\cygwin64\bin\cygboost_log-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_log-1_57.dll" v0.0 ts=2015-05-06 02:33
  703k 2015/10/14 C:\cygwin64\bin\cygboost_log-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_log-1_58.dll" v0.0 ts=2015-10-14 10:00
 1481k 2015/03/17 C:\cygwin64\bin\cygboost_log_setup-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_log_setup-1_55.dll" v0.0 ts=2015-03-17 03:47
  884k 2015/05/06 C:\cygwin64\bin\cygboost_log_setup-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_log_setup-1_57.dll" v0.0 ts=2015-05-06 02:34
  887k 2015/10/14 C:\cygwin64\bin\cygboost_log_setup-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_log_setup-1_58.dll" v0.0 ts=2015-10-14 10:01
   66k 2015/03/17 C:\cygwin64\bin\cygboost_math_c99-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99-1_55.dll" v0.0 ts=2015-03-17 03:51
   67k 2015/05/06 C:\cygwin64\bin\cygboost_math_c99-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99-1_57.dll" v0.0 ts=2015-05-06 02:31
   67k 2015/10/14 C:\cygwin64\bin\cygboost_math_c99-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99-1_58.dll" v0.0 ts=2015-10-14 10:03
   63k 2013/05/29 C:\cygwin64\bin\cygboost_math_c99-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99-mt-1_53.dll" v0.0 ts=2013-05-30 00:34
   69k 2015/03/17 C:\cygwin64\bin\cygboost_math_c99f-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99f-1_55.dll" v0.0 ts=2015-03-17 03:51
   70k 2015/05/06 C:\cygwin64\bin\cygboost_math_c99f-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99f-1_57.dll" v0.0 ts=2015-05-06 02:32
   70k 2015/10/14 C:\cygwin64\bin\cygboost_math_c99f-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99f-1_58.dll" v0.0 ts=2015-10-14 10:03
   68k 2013/05/29 C:\cygwin64\bin\cygboost_math_c99f-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_c99f-mt-1_53.dll" v0.0 ts=2013-05-30 00:34
  324k 2015/03/17 C:\cygwin64\bin\cygboost_math_tr1-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1-1_55.dll" v0.0 ts=2015-03-17 03:49
  326k 2015/05/06 C:\cygwin64\bin\cygboost_math_tr1-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1-1_57.dll" v0.0 ts=2015-05-06 02:29
  354k 2015/10/14 C:\cygwin64\bin\cygboost_math_tr1-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1-1_58.dll" v0.0 ts=2015-10-14 10:02
  320k 2013/05/29 C:\cygwin64\bin\cygboost_math_tr1-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1-mt-1_53.dll" v0.0 ts=2013-05-30 00:33
  325k 2015/03/17 C:\cygwin64\bin\cygboost_math_tr1f-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1f-1_55.dll" v0.0 ts=2015-03-17 03:50
  327k 2015/05/06 C:\cygwin64\bin\cygboost_math_tr1f-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1f-1_57.dll" v0.0 ts=2015-05-06 02:30
  357k 2015/10/14 C:\cygwin64\bin\cygboost_math_tr1f-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1f-1_58.dll" v0.0 ts=2015-10-14 10:03
  321k 2013/05/29 C:\cygwin64\bin\cygboost_math_tr1f-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_math_tr1f-mt-1_53.dll" v0.0 ts=2013-05-30 00:34
   47k 2015/03/17 C:\cygwin64\bin\cygboost_prg_exec_monitor-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_prg_exec_monitor-1_55.dll" v0.0 ts=2015-03-17 03:56
   47k 2015/05/06 C:\cygwin64\bin\cygboost_prg_exec_monitor-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_prg_exec_monitor-1_57.dll" v0.0 ts=2015-05-06 02:39
   47k 2015/10/14 C:\cygwin64\bin\cygboost_prg_exec_monitor-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_prg_exec_monitor-1_58.dll" v0.0 ts=2015-10-14 10:07
   42k 2013/05/29 C:\cygwin64\bin\cygboost_prg_exec_monitor-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_prg_exec_monitor-mt-1_53.dll" v0.0 ts=2013-05-30 00:37
  381k 2015/03/17 C:\cygwin64\bin\cygboost_program_options-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_program_options-1_55.dll" v0.0 ts=2015-03-17 03:48
  382k 2015/05/06 C:\cygwin64\bin\cygboost_program_options-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_program_options-1_57.dll" v0.0 ts=2015-05-06 02:28
  390k 2015/10/14 C:\cygwin64\bin\cygboost_program_options-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_program_options-1_58.dll" v0.0 ts=2015-10-14 10:04
  361k 2013/05/29 C:\cygwin64\bin\cygboost_program_options-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_program_options-mt-1_53.dll" v0.0 ts=2013-05-30 00:36
   13k 2015/03/17 C:\cygwin64\bin\cygboost_random-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_random-1_55.dll" v0.0 ts=2015-03-17 03:54
   20k 2015/05/06 C:\cygwin64\bin\cygboost_random-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_random-1_57.dll" v0.0 ts=2015-05-06 02:37
   20k 2015/10/14 C:\cygwin64\bin\cygboost_random-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_random-1_58.dll" v0.0 ts=2015-10-14 10:06
   11k 2013/05/29 C:\cygwin64\bin\cygboost_random-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_random-mt-1_53.dll" v0.0 ts=2013-05-30 00:36
  872k 2015/03/17 C:\cygwin64\bin\cygboost_regex-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_regex-1_55.dll" v0.0 ts=2015-03-17 03:44
  872k 2015/05/06 C:\cygwin64\bin\cygboost_regex-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_regex-1_57.dll" v0.0 ts=2015-05-06 02:26
  873k 2015/10/14 C:\cygwin64\bin\cygboost_regex-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_regex-1_58.dll" v0.0 ts=2015-10-14 09:58
  913k 2013/05/29 C:\cygwin64\bin\cygboost_regex-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_regex-mt-1_53.dll" v0.0 ts=2013-05-30 00:32
  369k 2015/03/17 C:\cygwin64\bin\cygboost_serialization-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_serialization-1_55.dll" v0.0 ts=2015-03-17 03:55
  324k 2015/05/06 C:\cygwin64\bin\cygboost_serialization-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_serialization-1_57.dll" v0.0 ts=2015-05-06 02:38
  322k 2015/10/14 C:\cygwin64\bin\cygboost_serialization-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_serialization-1_58.dll" v0.0 ts=2015-10-14 10:06
  363k 2013/05/29 C:\cygwin64\bin\cygboost_serialization-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_serialization-mt-1_53.dll" v0.0 ts=2013-05-30 00:37
   83k 2015/03/17 C:\cygwin64\bin\cygboost_signals-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_signals-1_55.dll" v0.0 ts=2015-03-17 03:55
   83k 2015/05/06 C:\cygwin64\bin\cygboost_signals-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_signals-1_57.dll" v0.0 ts=2015-05-06 02:39
   83k 2015/10/14 C:\cygwin64\bin\cygboost_signals-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_signals-1_58.dll" v0.0 ts=2015-10-14 10:07
   74k 2013/05/29 C:\cygwin64\bin\cygboost_signals-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_signals-mt-1_53.dll" v0.0 ts=2013-05-30 00:37
   22k 2015/03/17 C:\cygwin64\bin\cygboost_system-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_system-1_55.dll" v0.0 ts=2015-03-17 03:43
   22k 2015/05/06 C:\cygwin64\bin\cygboost_system-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_system-1_57.dll" v0.0 ts=2015-05-06 02:26
   22k 2015/10/14 C:\cygwin64\bin\cygboost_system-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_system-1_58.dll" v0.0 ts=2015-10-14 09:57
   19k 2013/05/29 C:\cygwin64\bin\cygboost_system-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_system-mt-1_53.dll" v0.0 ts=2013-05-30 00:31
   81k 2015/03/17 C:\cygwin64\bin\cygboost_thread-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_thread-1_55.dll" v0.0 ts=2015-03-17 03:44
   82k 2015/05/06 C:\cygwin64\bin\cygboost_thread-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_thread-1_57.dll" v0.0 ts=2015-05-06 02:26
   81k 2015/10/14 C:\cygwin64\bin\cygboost_thread-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_thread-1_58.dll" v0.0 ts=2015-10-14 09:57
   70k 2013/05/29 C:\cygwin64\bin\cygboost_thread-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_thread-mt-1_53.dll" v0.0 ts=2013-05-30 00:32
   17k 2015/03/17 C:\cygwin64\bin\cygboost_timer-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_timer-1_55.dll" v0.0 ts=2015-03-17 03:56
   17k 2015/05/06 C:\cygwin64\bin\cygboost_timer-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_timer-1_57.dll" v0.0 ts=2015-05-06 02:39
   17k 2015/10/14 C:\cygwin64\bin\cygboost_timer-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_timer-1_58.dll" v0.0 ts=2015-10-14 10:07
   17k 2013/05/29 C:\cygwin64\bin\cygboost_timer-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_timer-mt-1_53.dll" v0.0 ts=2013-05-30 00:37
  545k 2015/03/17 C:\cygwin64\bin\cygboost_unit_test_framework-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_unit_test_framework-1_55.dll" v0.0 ts=2015-03-17 03:57
  549k 2015/05/06 C:\cygwin64\bin\cygboost_unit_test_framework-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_unit_test_framework-1_57.dll" v0.0 ts=2015-05-06 02:40
  549k 2015/10/14 C:\cygwin64\bin\cygboost_unit_test_framework-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_unit_test_framework-1_58.dll" v0.0 ts=2015-10-14 10:08
  520k 2013/05/29 C:\cygwin64\bin\cygboost_unit_test_framework-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_unit_test_framework-mt-1_53.dll" v0.0 ts=2013-05-30 00:38
  998k 2015/03/17 C:\cygwin64\bin\cygboost_wave-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wave-1_55.dll" v0.0 ts=2015-03-17 03:57
  998k 2015/05/06 C:\cygwin64\bin\cygboost_wave-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wave-1_57.dll" v0.0 ts=2015-05-06 02:40
 1012k 2015/10/14 C:\cygwin64\bin\cygboost_wave-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wave-1_58.dll" v0.0 ts=2015-10-14 10:08
  991k 2013/05/29 C:\cygwin64\bin\cygboost_wave-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wave-mt-1_53.dll" v0.0 ts=2013-05-30 00:38
  263k 2015/03/17 C:\cygwin64\bin\cygboost_wserialization-1_55.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wserialization-1_55.dll" v0.0 ts=2015-03-17 03:55
  242k 2015/05/06 C:\cygwin64\bin\cygboost_wserialization-1_57.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wserialization-1_57.dll" v0.0 ts=2015-05-06 02:38
  242k 2015/10/14 C:\cygwin64\bin\cygboost_wserialization-1_58.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wserialization-1_58.dll" v0.0 ts=2015-10-14 10:06
  257k 2013/05/29 C:\cygwin64\bin\cygboost_wserialization-mt-1_53.dll - os=4.0 img=0.0 sys=5.2
                  "cygboost_wserialization-mt-1_53.dll" v0.0 ts=2013-05-30 00:37
   64k 2013/03/07 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2013-03-07 03:54
 1087k 2015/11/23 C:\cygwin64\bin\cygcairo-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcairo-2.dll" v0.0 ts=2015-11-23 21:30
   27k 2015/11/23 C:\cygwin64\bin\cygcairo-gobject-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcairo-gobject-2.dll" v0.0 ts=2015-11-23 21:31
  119k 2015/11/23 C:\cygwin64\bin\cygcairo-script-interpreter-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcairo-script-interpreter-2.dll" v0.0 ts=2015-11-23 21:31
   39k 2013/07/14 C:\cygwin64\bin\cygcamd-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcamd-0.dll" v0.0 ts=2013-07-14 16:45
   41k 2016/03/11 C:\cygwin64\bin\cygcamd-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcamd-1.dll" v0.0 ts=2016-03-11 11:21
   59k 2013/06/04 C:\cygwin64\bin\cygcanberra-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcanberra-0.dll" v0.0 ts=2013-06-04 09:04
   17k 2013/06/04 C:\cygwin64\bin\cygcanberra-gtk3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcanberra-gtk3-0.dll" v0.0 ts=2013-06-04 09:05
   13k 2013/03/06 C:\cygwin64\bin\cygcatgets1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcatgets1.dll" v0.0 ts=2013-03-06 15:34
   39k 2013/07/14 C:\cygwin64\bin\cygccolamd-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygccolamd-0.dll" v0.0 ts=2013-07-14 16:54
   41k 2016/03/11 C:\cygwin64\bin\cygccolamd-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygccolamd-1.dll" v0.0 ts=2016-03-11 11:39
   24k 2015/06/29 C:\cygwin64\bin\cygcdt-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygcdt-5.dll" v0.0 ts=2015-06-29 23:51
   68k 2015/06/29 C:\cygwin64\bin\cygcgraph-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygcgraph-6.dll" v0.0 ts=2015-06-29 23:51
   10k 2015/02/20 C:\cygwin64\bin\cygcharset-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcharset-1.dll" v0.0 ts=2015-02-20 18:07
  873k 2013/07/14 C:\cygwin64\bin\cygcholmod-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcholmod-0.dll" v0.0 ts=2013-07-14 18:37
  882k 2016/03/11 C:\cygwin64\bin\cygcholmod-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcholmod-1.dll" v0.0 ts=2016-03-11 13:03
  117k 2013/05/05 C:\cygwin64\bin\cygcloog-isl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcloog-isl-4.dll" v0.0 ts=2013-05-05 17:41
   27k 2013/07/14 C:\cygwin64\bin\cygcolamd-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcolamd-0.dll" v0.0 ts=2013-07-14 16:32
   28k 2016/03/11 C:\cygwin64\bin\cygcolamd-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcolamd-1.dll" v0.0 ts=2016-03-11 11:18
   13k 2015/03/19 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 02:44
  203k 2015/11/15 C:\cygwin64\bin\cygcroco-0.6-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygcroco-0.6-3.dll" v0.0 ts=2015-11-15 03:29
   10k 2016/03/18 C:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2016-03-18 11:05
 2231k 2016/05/04 C:\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2016-05-04 17:07
  462k 2016/05/18 C:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2016-05-19 01:39
  160k 2016/03/11 C:\cygwin64\bin\cygcxsparse-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcxsparse-0.dll" v0.0 ts=2016-03-11 12:04
   24k 2014/11/12 C:\cygwin64\bin\cygdatrie-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygdatrie-1.dll" v0.0 ts=2014-11-12 08:24
 1526k 2013/03/08 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2013-03-08 08:55
  267k 2016/05/06 C:\cygwin64\bin\cygdbus-1-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdbus-1-3.dll" v0.0 ts=2016-05-06 21:28
  124k 2016/05/06 C:\cygwin64\bin\cygdbus-glib-1-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygdbus-glib-1-2.dll" v0.0 ts=2016-05-06 21:51
  111k 2013/03/08 C:\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_cxx-5.3.dll" v0.0 ts=2013-03-08 08:56
  472k 2013/03/08 C:\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_sql-5.3.dll" v0.0 ts=2013-03-08 08:58
   49k 2015/11/15 C:\cygwin64\bin\cygdconf-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygdconf-1.dll" v0.0 ts=2015-11-15 04:12
  169k 2014/02/10 C:\cygwin64\bin\cygdialog-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygdialog-11.dll" v0.0 ts=2014-02-10 02:24
  173k 2015/03/13 C:\cygwin64\bin\cygdialog-12.dll - os=4.0 img=0.0 sys=5.2
                  "cygdialog-12.dll" v0.0 ts=2015-03-13 20:55
  176k 2016/05/03 C:\cygwin64\bin\cygdialog-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygdialog-13.dll" v0.0 ts=2016-05-03 20:58
   15k 2013/06/06 C:\cygwin64\bin\cygdmx-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygdmx-1.dll" v0.0 ts=2013-06-06 21:04
  154k 2013/10/20 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 22:56
  107k 2016/05/09 C:\cygwin64\bin\cygEGL-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygEGL-1.dll" v0.0 ts=2016-05-09 20:00
  158k 2013/04/23 C:\cygwin64\bin\cygEMF-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygEMF-1.dll" v0.0 ts=2013-04-23 07:39
   38k 2015/08/28 C:\cygwin64\bin\cygenchant-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygenchant-1.dll" v0.0 ts=2015-08-28 19:25
  663k 2015/05/17 C:\cygwin64\bin\cygepoxy-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygepoxy-0.dll" v0.0 ts=2015-05-17 18:32
  229k 2016/01/08 C:\cygwin64\bin\cygevent-2-0-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygevent-2-0-5.dll" v0.0 ts=2016-01-08 08:24
  136k 2016/01/08 C:\cygwin64\bin\cygevent_core-2-0-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygevent_core-2-0-5.dll" v0.0 ts=2016-01-08 08:24
  106k 2016/01/08 C:\cygwin64\bin\cygevent_extra-2-0-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygevent_extra-2-0-5.dll" v0.0 ts=2016-01-08 08:24
   21k 2016/01/08 C:\cygwin64\bin\cygevent_openssl-2-0-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygevent_openssl-2-0-5.dll" v0.0 ts=2016-01-08 08:24
   10k 2016/01/08 C:\cygwin64\bin\cygevent_pthreads-2-0-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygevent_pthreads-2-0-5.dll" v0.0 ts=2016-01-08 08:24
  144k 2016/05/16 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2016-05-16 17:27
   73k 2015/03/18 C:\cygwin64\bin\cygexslt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygexslt-0.dll" v0.0 ts=2015-03-19 00:39
   30k 2014/10/14 C:\cygwin64\bin\cygfam-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygfam-0.dll" v0.0 ts=2014-10-14 22:33
   27k 2015/11/17 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-11-17 23:14
 1049k 2016/04/11 C:\cygwin64\bin\cygfftw3-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfftw3-3.dll" v0.0 ts=2016-04-11 15:29
 1008k 2016/04/11 C:\cygwin64\bin\cygfftw3f-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfftw3f-3.dll" v0.0 ts=2016-04-11 15:17
   24k 2016/04/11 C:\cygwin64\bin\cygfftw3f_threads-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfftw3f_threads-3.dll" v0.0 ts=2016-04-11 15:18
  863k 2016/04/11 C:\cygwin64\bin\cygfftw3l-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfftw3l-3.dll" v0.0 ts=2016-04-11 15:40
   24k 2016/04/11 C:\cygwin64\bin\cygfftw3l_threads-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfftw3l_threads-3.dll" v0.0 ts=2016-04-11 15:41
   24k 2016/04/11 C:\cygwin64\bin\cygfftw3_threads-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfftw3_threads-3.dll" v0.0 ts=2016-04-11 15:29
  412k 2014/11/30 C:\cygwin64\bin\cygFLAC-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygFLAC-8.dll" v0.0 ts=2014-11-30 22:27
  958k 2015/03/16 C:\cygwin64\bin\cygfltk-1.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfltk-1.3.dll" v0.0 ts=2015-03-16 07:08
   25k 2015/03/16 C:\cygwin64\bin\cygfltk_forms-1.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfltk_forms-1.3.dll" v0.0 ts=2015-03-16 07:08
   95k 2015/03/16 C:\cygwin64\bin\cygfltk_gl-1.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfltk_gl-1.3.dll" v0.0 ts=2015-03-16 07:08
   48k 2015/03/16 C:\cygwin64\bin\cygfltk_images-1.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygfltk_images-1.3.dll" v0.0 ts=2015-03-16 07:08
  240k 2016/03/09 C:\cygwin64\bin\cygfontconfig-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfontconfig-1.dll" v0.0 ts=2016-03-09 20:10
   26k 2016/01/29 C:\cygwin64\bin\cygfontenc-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfontenc-1.dll" v0.0 ts=2016-01-29 21:19
   55k 2016/05/03 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2016-05-03 15:31
  545k 2015/01/15 C:\cygwin64\bin\cygfpx-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfpx-1.dll" v0.0 ts=2015-01-15 13:50
  586k 2015/09/08 C:\cygwin64\bin\cygfreetype-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygfreetype-6.dll" v0.0 ts=2015-09-08 09:51
   91k 2013/06/05 C:\cygwin64\bin\cygfribidi-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygfribidi-0.dll" v0.0 ts=2013-06-05 19:14
   28k 2015/12/30 C:\cygwin64\bin\cyggailutil-18.dll - os=4.0 img=0.0 sys=5.2
                  "cyggailutil-18.dll" v0.0 ts=2015-12-30 01:44
   70k 2016/04/17 C:\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2016-04-17 14:41
  174k 2015/11/29 C:\cygwin64\bin\cyggck-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggck-1-0.dll" v0.0 ts=2015-11-29 22:53
  156k 2013/08/06 C:\cygwin64\bin\cyggconf-2-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggconf-2-4.dll" v0.0 ts=2013-08-06 21:22
  478k 2015/11/29 C:\cygwin64\bin\cyggcr-base-3-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcr-base-3-1.dll" v0.0 ts=2015-11-29 22:54
  367k 2015/11/29 C:\cygwin64\bin\cyggcr-ui-3-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcr-ui-3-1.dll" v0.0 ts=2015-11-29 22:55
  475k 2015/03/18 C:\cygwin64\bin\cyggcrypt-11.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcrypt-11.dll" v0.0 ts=2015-03-18 21:03
  580k 2015/11/30 C:\cygwin64\bin\cyggcrypt-20.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcrypt-20.dll" v0.0 ts=2015-11-30 05:26
  221k 2015/01/23 C:\cygwin64\bin\cyggd-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggd-2.dll" v0.0 ts=2015-01-23 18:51
  364k 2015/02/09 C:\cygwin64\bin\cyggd-3.dll - os=4.0 img=0.0 sys=5.2
                  "cyggd-3.dll" v0.0 ts=2015-02-09 11:13
   40k 2014/05/27 C:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=1970-01-01 01:00
   13k 2014/05/27 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=1970-01-01 01:00
  606k 2016/04/25 C:\cygwin64\bin\cyggdk-3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdk-3-0.dll" v0.0 ts=2016-04-25 20:11
  609k 2015/12/30 C:\cygwin64\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2015-12-30 01:37
  131k 2015/11/15 C:\cygwin64\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2015-11-15 03:51
  200k 2016/05/04 C:\cygwin64\bin\cyggettextlib-0-19-7.dll - os=4.0 img=0.0 sys=5.2
                  "cyggettextlib-0-19-7.dll" v0.0 ts=2016-05-04 17:24
  270k 2016/05/04 C:\cygwin64\bin\cyggettextsrc-0-19-7.dll - os=4.0 img=0.0 sys=5.2
                  "cyggettextsrc-0-19-7.dll" v0.0 ts=2016-05-04 17:28
 1155k 2016/04/17 C:\cygwin64\bin\cyggfortran-3.dll - os=4.0 img=0.0 sys=5.2
                  "cyggfortran-3.dll" v0.0 ts=2016-04-17 15:58
   38k 2015/03/26 C:\cygwin64\bin\cyggg-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggg-1.dll" v0.0 ts=2015-03-26 13:30
   53k 2015/03/26 C:\cygwin64\bin\cygggi-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygggi-2.dll" v0.0 ts=2015-03-26 16:05
   13k 2015/03/26 C:\cygwin64\bin\cygggiwmh-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygggiwmh-0.dll" v0.0 ts=2015-03-26 16:13
   32k 2013/07/22 C:\cygwin64\bin\cyggif-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggif-4.dll" v0.0 ts=2013-07-22 06:17
   30k 2015/03/26 C:\cygwin64\bin\cyggii-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggii-1.dll" v0.0 ts=2015-03-26 13:31
 1276k 2016/03/10 C:\cygwin64\bin\cyggio-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggio-2.0-0.dll" v0.0 ts=2016-03-10 08:14
  445k 2016/05/09 C:\cygwin64\bin\cygGL-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygGL-1.dll" v0.0 ts=2016-05-09 19:44
   77k 2015/10/22 C:\cygwin64\bin\cyggl2ps-1.dll - os=4.0 img=1.3 sys=5.2
                  "cyggl2ps-1.dll" v0.0 ts=2015-10-22 21:33
   87k 2013/05/30 C:\cygwin64\bin\cygglade-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglade-2.0-0.dll" v0.0 ts=2013-05-31 00:40
  517k 2015/01/12 C:\cygwin64\bin\cyggladeui-1-11.dll - os=4.0 img=0.0 sys=5.2
                  "cyggladeui-1-11.dll" v0.0 ts=2015-01-12 07:03
  285k 2016/05/09 C:\cygwin64\bin\cygglapi-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglapi-0.dll" v0.0 ts=2016-05-09 19:35
  958k 2016/03/10 C:\cygwin64\bin\cygglib-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglib-2.0-0.dll" v0.0 ts=2016-03-10 08:12
  900k 2015/11/08 C:\cygwin64\bin\cygglpk-36.dll - os=4.0 img=0.0 sys=5.2
                  "cygglpk-36.dll" v0.0 ts=2015-11-08 10:40
  913k 2016/04/02 C:\cygwin64\bin\cygglpk-40.dll - os=4.0 img=0.0 sys=5.2
                  "cygglpk-40.dll" v0.0 ts=2016-04-02 12:22
  477k 2013/04/09 C:\cygwin64\bin\cygGLU-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygGLU-1.dll" v0.0 ts=2013-04-09 08:56
   14k 2016/03/10 C:\cygwin64\bin\cyggmodule-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmodule-2.0-0.dll" v0.0 ts=2016-03-10 08:12
  528k 2015/12/06 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2015-12-06 09:37
   21k 2015/12/06 C:\cygwin64\bin\cyggmpxx-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmpxx-4.dll" v0.0 ts=2015-12-06 09:37
   75k 2013/06/04 C:\cygwin64\bin\cyggnome-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnome-2-0.dll" v0.0 ts=2013-06-04 18:44
  125k 2015/03/18 C:\cygwin64\bin\cyggnome-keyring-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnome-keyring-0.dll" v0.0 ts=2015-03-18 21:58
   93k 2015/06/19 C:\cygwin64\bin\cyggnome-menu-3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnome-menu-3-0.dll" v0.0 ts=2015-06-20 01:07
  184k 2013/05/30 C:\cygwin64\bin\cyggnomecanvas-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnomecanvas-2-0.dll" v0.0 ts=2013-05-31 01:13
  522k 2013/06/04 C:\cygwin64\bin\cyggnomeui-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnomeui-2-0.dll" v0.0 ts=2013-06-04 19:57
  331k 2014/05/23 C:\cygwin64\bin\cyggnomevfs-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnomevfs-2-0.dll" v0.0 ts=1970-01-01 01:00
  931k 2015/08/28 C:\cygwin64\bin\cyggnutls-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-28.dll" v0.0 ts=2015-08-28 18:05
   24k 2015/08/28 C:\cygwin64\bin\cyggnutls-openssl-27.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-openssl-27.dll" v0.0 ts=2015-08-28 18:06
   41k 2015/08/28 C:\cygwin64\bin\cyggnutlsxx-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutlsxx-28.dll" v0.0 ts=2015-08-28 18:06
  284k 2016/03/10 C:\cygwin64\bin\cyggobject-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggobject-2.0-0.dll" v0.0 ts=2016-03-10 08:13
  105k 2016/04/17 C:\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-1.dll" v0.0 ts=2016-04-17 14:45
   10k 2016/04/17 C:\cygwin64\bin\cyggomp-plugin-host_nonshm-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-plugin-host_nonshm-1.dll" v0.0 ts=2016-04-17 14:45
   65k 2015/11/30 C:\cygwin64\bin\cyggpg-error-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggpg-error-0.dll" v0.0 ts=2015-11-30 05:03
  156k 2014/12/10 C:\cygwin64\bin\cyggpgme-11.dll - os=4.0 img=0.0 sys=5.2
                  "cyggpgme-11.dll" v0.0 ts=2014-12-10 02:06
  155k 2014/12/10 C:\cygwin64\bin\cyggpgme-pthread-11.dll - os=4.0 img=0.0 sys=5.2
                  "cyggpgme-pthread-11.dll" v0.0 ts=2014-12-10 02:06
  285k 2015/07/01 C:\cygwin64\bin\cygGraphicsMagick++-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygGraphicsMagick++-11.dll" v0.0 ts=2015-07-01 23:54
  285k 2015/11/08 C:\cygwin64\bin\cygGraphicsMagick++-12.dll - os=4.0 img=0.0 sys=5.2
                  "cygGraphicsMagick++-12.dll" v0.0 ts=2015-11-08 06:54
 2937k 2015/11/08 C:\cygwin64\bin\cygGraphicsMagick-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygGraphicsMagick-3.dll" v0.0 ts=2015-11-08 06:53
  175k 2016/03/02 C:\cygwin64\bin\cyggraphite2-3.dll - os=4.0 img=3.0 sys=5.2
                  "cyggraphite2-3.dll" v0.0 ts=2016-03-02 17:19
11338k 2015/02/12 C:\cygwin64\bin\cyggs-9.dll - os=4.0 img=0.0 sys=5.2
                  "cyggs-9.dll" v0.0 ts=2015-02-12 16:41
  217k 2016/04/19 C:\cygwin64\bin\cyggsf-1-114.dll - os=4.0 img=0.0 sys=5.2
                  "cyggsf-1-114.dll" v0.0 ts=2016-04-19 23:05
   46k 2015/02/17 C:\cygwin64\bin\cyggsm-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggsm-1.dll" v0.0 ts=2015-02-17 23:10
  198k 2014/03/20 C:\cygwin64\bin\cyggssapi-3.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi-3.dll" v0.0 ts=2014-03-20 06:15
  258k 2016/03/21 C:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2016-03-21 04:40
   97k 2016/03/21 C:\cygwin64\bin\cyggssrpc-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssrpc-4.dll" v0.0 ts=2016-03-21 04:41
    9k 2016/03/10 C:\cygwin64\bin\cyggthread-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggthread-2.0-0.dll" v0.0 ts=2016-03-10 08:12
 6690k 2016/04/25 C:\cygwin64\bin\cyggtk-3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggtk-3-0.dll" v0.0 ts=2016-04-25 20:20
 3935k 2015/12/30 C:\cygwin64\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2015-12-30 01:43
   17k 2016/04/25 C:\cygwin64\bin\cyggtkreftestprivate-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggtkreftestprivate-0.dll" v0.0 ts=2016-04-25 20:27
  364k 2013/06/05 C:\cygwin64\bin\cyggtksourceview-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggtksourceview-2.0-0.dll" v0.0 ts=2013-06-05 04:05
   24k 2013/06/19 C:\cygwin64\bin\cyggtkspell-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggtkspell-0.dll" v0.0 ts=2013-06-19 20:52
  333k 2013/06/05 C:\cygwin64\bin\cyggts-0-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyggts-0-7-5.dll" v0.0 ts=2013-06-06 01:01
  691k 2013/04/22 C:\cygwin64\bin\cygguile-17.dll - os=4.0 img=0.0 sys=5.2
                  "cygguile-17.dll" v0.0 ts=2013-04-22 04:15
  505k 2015/06/29 C:\cygwin64\bin\cyggvc-6.dll - os=4.0 img=0.0 sys=5.2
                  "cyggvc-6.dll" v0.0 ts=2015-06-29 23:53
  186k 2015/11/15 C:\cygwin64\bin\cyggvfscommon.dll - os=4.0 img=0.0 sys=5.2
                  "cyggvfscommon.dll" v0.0 ts=2015-11-15 04:13
  123k 2015/11/15 C:\cygwin64\bin\cyggvfsdaemon.dll - os=4.0 img=0.0 sys=5.2
                  "cyggvfsdaemon.dll" v0.0 ts=2015-11-15 04:15
  388k 2015/06/29 C:\cygwin64\bin\cyggvpr-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggvpr-2.dll" v0.0 ts=2015-06-29 23:54
  373k 2015/11/23 C:\cygwin64\bin\cygharfbuzz-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygharfbuzz-0.dll" v0.0 ts=2015-11-23 21:49
   11k 2015/11/23 C:\cygwin64\bin\cygharfbuzz-icu-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygharfbuzz-icu-0.dll" v0.0 ts=2015-11-23 21:49
 2556k 2016/05/15 C:\cygwin64\bin\cyghdf5-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyghdf5-10.dll" v0.0 ts=2016-05-15 08:52
   14k 2014/03/20 C:\cygwin64\bin\cygheimbase-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygheimbase-1.dll" v0.0 ts=2014-03-20 04:52
   24k 2014/03/20 C:\cygwin64\bin\cygheimntlm-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygheimntlm-0.dll" v0.0 ts=2014-03-20 06:13
   30k 2015/01/27 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2015-01-27 04:51
  167k 2016/03/13 C:\cygwin64\bin\cyghogweed-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyghogweed-2.dll" v0.0 ts=2016-03-13 14:46
  305k 2015/08/28 C:\cygwin64\bin\cyghunspell-1.3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyghunspell-1.3-0.dll" v0.0 ts=2015-08-28 08:51
  236k 2014/03/20 C:\cygwin64\bin\cyghx509-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyghx509-5.dll" v0.0 ts=2014-03-20 04:55
   77k 2014/08/10 C:\cygwin64\bin\cygICE-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygICE-6.dll" v0.0 ts=1970-01-01 01:00
  361k 2015/11/24 C:\cygwin64\bin\cygicons-0.dll - os=4.0 img=1.4 sys=5.2
                  "cygicons-0.dll" v0.0 ts=2015-11-24 08:54
 1009k 2015/02/20 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 18:07
21806k 2013/06/25 C:\cygwin64\bin\cygicudata51.dll - os=4.0 img=0.0 sys=5.2
                  "cygicudata51.dll" v0.0 ts=2013-06-25 07:30
24750k 2015/02/16 C:\cygwin64\bin\cygicudata54.dll - os=4.0 img=0.0 sys=5.2
                  "cygicudata54.dll" v0.0 ts=2015-02-16 20:08
25310k 2015/05/04 C:\cygwin64\bin\cygicudata55.dll - os=4.0 img=0.0 sys=5.2
                  "cygicudata55.dll" v0.0 ts=2015-05-04 18:06
24466k 2015/10/08 C:\cygwin64\bin\cygicudata56.dll - os=4.0 img=0.0 sys=5.2
                  "cygicudata56.dll" v0.0 ts=2015-10-08 14:46
25076k 2016/04/08 C:\cygwin64\bin\cygicudata57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicudata57.dll" v0.0 ts=2016-04-08 21:07
 1717k 2013/06/25 C:\cygwin64\bin\cygicui18n51.dll - os=4.0 img=0.0 sys=5.2
                  "cygicui18n51.dll" v0.0 ts=2013-06-25 07:28
 1951k 2015/02/16 C:\cygwin64\bin\cygicui18n54.dll - os=4.0 img=0.0 sys=5.2
                  "cygicui18n54.dll" v0.0 ts=2015-02-16 20:06
 2005k 2015/05/04 C:\cygwin64\bin\cygicui18n55.dll - os=4.0 img=0.0 sys=5.2
                  "cygicui18n55.dll" v0.0 ts=2015-05-04 18:03
 2093k 2015/10/08 C:\cygwin64\bin\cygicui18n56.dll - os=4.0 img=0.0 sys=5.2
                  "cygicui18n56.dll" v0.0 ts=2015-10-08 14:42
 2082k 2016/04/08 C:\cygwin64\bin\cygicui18n57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicui18n57.dll" v0.0 ts=2016-04-08 21:04
   43k 2013/06/25 C:\cygwin64\bin\cygicuio51.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuio51.dll" v0.0 ts=2013-06-25 07:30
   44k 2015/02/16 C:\cygwin64\bin\cygicuio54.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuio54.dll" v0.0 ts=2015-02-16 20:07
   44k 2015/05/04 C:\cygwin64\bin\cygicuio55.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuio55.dll" v0.0 ts=2015-05-04 18:04
   44k 2015/10/08 C:\cygwin64\bin\cygicuio56.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuio56.dll" v0.0 ts=2015-10-08 14:44
   44k 2016/04/08 C:\cygwin64\bin\cygicuio57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuio57.dll" v0.0 ts=2016-04-08 21:05
  305k 2013/06/25 C:\cygwin64\bin\cygicule51.dll - os=4.0 img=0.0 sys=5.2
                  "cygicule51.dll" v0.0 ts=2013-06-25 07:28
  305k 2015/02/16 C:\cygwin64\bin\cygicule54.dll - os=4.0 img=0.0 sys=5.2
                  "cygicule54.dll" v0.0 ts=2015-02-16 20:06
  306k 2015/05/04 C:\cygwin64\bin\cygicule55.dll - os=4.0 img=0.0 sys=5.2
                  "cygicule55.dll" v0.0 ts=2015-05-04 18:04
  306k 2015/10/08 C:\cygwin64\bin\cygicule56.dll - os=4.0 img=0.0 sys=5.2
                  "cygicule56.dll" v0.0 ts=2015-10-08 14:44
  298k 2016/04/08 C:\cygwin64\bin\cygicule57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicule57.dll" v0.0 ts=2016-04-08 21:05
   38k 2013/06/25 C:\cygwin64\bin\cygiculx51.dll - os=4.0 img=0.0 sys=5.2
                  "cygiculx51.dll" v0.0 ts=2013-06-25 07:28
   38k 2015/02/16 C:\cygwin64\bin\cygiculx54.dll - os=4.0 img=0.0 sys=5.2
                  "cygiculx54.dll" v0.0 ts=2015-02-16 20:06
   38k 2015/05/04 C:\cygwin64\bin\cygiculx55.dll - os=4.0 img=0.0 sys=5.2
                  "cygiculx55.dll" v0.0 ts=2015-05-04 18:04
   38k 2015/10/08 C:\cygwin64\bin\cygiculx56.dll - os=4.0 img=0.0 sys=5.2
                  "cygiculx56.dll" v0.0 ts=2015-10-08 14:44
   38k 2016/04/08 C:\cygwin64\bin\cygiculx57.dll - os=4.0 img=0.0 sys=5.2
                  "cygiculx57.dll" v0.0 ts=2016-04-08 21:05
   50k 2016/04/08 C:\cygwin64\bin\cygicutest57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicutest57.dll" v0.0 ts=2016-04-08 21:05
  164k 2016/04/08 C:\cygwin64\bin\cygicutu57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicutu57.dll" v0.0 ts=2016-04-08 21:05
 1231k 2013/06/25 C:\cygwin64\bin\cygicuuc51.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuuc51.dll" v0.0 ts=2013-06-25 07:27
 1311k 2015/02/16 C:\cygwin64\bin\cygicuuc54.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuuc54.dll" v0.0 ts=2015-02-16 20:05
 1326k 2015/05/04 C:\cygwin64\bin\cygicuuc55.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuuc55.dll" v0.0 ts=2015-05-04 18:03
 1348k 2015/10/08 C:\cygwin64\bin\cygicuuc56.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuuc56.dll" v0.0 ts=2015-10-08 14:41
 1400k 2016/04/08 C:\cygwin64\bin\cygicuuc57.dll - os=4.0 img=0.0 sys=5.2
                  "cygicuuc57.dll" v0.0 ts=2016-04-08 21:03
  144k 2013/05/02 C:\cygwin64\bin\cygIDL-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygIDL-2-0.dll" v0.0 ts=2013-05-02 11:11
  196k 2014/12/06 C:\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn-11.dll" v0.0 ts=2014-12-06 14:17
   40k 2016/05/04 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2016-05-04 17:20
  294k 2013/09/09 C:\cygwin64\bin\cygiodbc-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiodbc-2.dll" v0.0 ts=2013-09-09 17:36
   66k 2013/09/09 C:\cygwin64\bin\cygiodbcinst-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiodbcinst-2.dll" v0.0 ts=2013-09-09 17:35
  888k 2013/05/05 C:\cygwin64\bin\cygisl-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-10.dll" v0.0 ts=2013-05-05 17:36
 1039k 2015/09/20 C:\cygwin64\bin\cygisl-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-13.dll" v0.0 ts=2015-09-20 13:39
  272k 2015/01/23 C:\cygwin64\bin\cygjasper-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygjasper-1.dll" v0.0 ts=2015-01-23 19:01
   48k 2014/06/17 C:\cygwin64\bin\cygjbig-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygjbig-2.dll" v0.0 ts=1970-01-01 01:00
   18k 2014/06/17 C:\cygwin64\bin\cygjbig85-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygjbig85-2.dll" v0.0 ts=1970-01-01 01:00
  333k 2015/10/08 C:\cygwin64\bin\cygjpeg-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygjpeg-8.dll" v0.0 ts=2015-10-08 09:35
   36k 2015/12/29 C:\cygwin64\bin\cygjson-c-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygjson-c-2.dll" v0.0 ts=2015-12-29 19:44
  129k 2015/11/15 C:\cygwin64\bin\cygjson-glib-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygjson-glib-1.0-0.dll" v0.0 ts=2015-11-15 03:35
  177k 2016/03/21 C:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2016-03-21 04:40
   66k 2016/03/21 C:\cygwin64\bin\cygkadm5clnt_mit-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygkadm5clnt_mit-10.dll" v0.0 ts=2016-03-21 04:41
   65k 2016/01/28 C:\cygwin64\bin\cygkadm5clnt_mit-9.dll - os=4.0 img=0.0 sys=5.2
                  "cygkadm5clnt_mit-9.dll" v0.0 ts=2016-01-28 04:00
   90k 2016/03/21 C:\cygwin64\bin\cygkadm5srv_mit-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygkadm5srv_mit-10.dll" v0.0 ts=2016-03-21 04:41
   88k 2016/01/28 C:\cygwin64\bin\cygkadm5srv_mit-9.dll - os=4.0 img=0.0 sys=5.2
                  "cygkadm5srv_mit-9.dll" v0.0 ts=2016-01-28 04:00
   23k 2014/03/20 C:\cygwin64\bin\cygkafs-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkafs-0.dll" v0.0 ts=2014-03-20 06:13
   56k 2016/03/21 C:\cygwin64\bin\cygkdb5-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygkdb5-8.dll" v0.0 ts=2016-03-21 04:41
   85k 2016/04/10 C:\cygwin64\bin\cygkpathsea-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygkpathsea-6.dll" v0.0 ts=2016-04-10 04:49
   34k 2016/03/21 C:\cygwin64\bin\cygkrad-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrad-0.dll" v0.0 ts=2016-03-21 04:41
  403k 2014/03/20 C:\cygwin64\bin\cygkrb5-26.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-26.dll" v0.0 ts=2014-03-20 06:12
  721k 2016/03/21 C:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2016-03-21 04:40
   35k 2016/03/21 C:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2016-03-21 04:40
   48k 2014/04/07 C:\cygwin64\bin\cygLASi-1.dll - os=4.0 img=1.0 sys=5.2
                  "cygLASi-1.dll" v0.0 ts=1970-01-01 01:00
   45k 2015/11/19 C:\cygwin64\bin\cyglber-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglber-2-4-2.dll" v0.0 ts=2015-11-19 15:17
  189k 2015/02/19 C:\cygwin64\bin\cyglcms-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyglcms-1.dll" v0.0 ts=2015-02-19 13:08
  293k 2014/11/14 C:\cygwin64\bin\cyglcms2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglcms2-2.dll" v0.0 ts=2014-11-14 13:24
  246k 2015/11/19 C:\cygwin64\bin\cygldap-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap-2-4-2.dll" v0.0 ts=2015-11-19 15:18
  262k 2015/11/19 C:\cygwin64\bin\cygldap_r-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap_r-2-4-2.dll" v0.0 ts=2015-11-19 15:19
17466k 2015/02/08 C:\cygwin64\bin\cygLLVM-3.4.dll - os=4.0 img=0.0 sys=5.2
                  "cygLLVM-3.4.dll" v0.0 ts=2015-02-08 18:48
18282k 2016/03/30 C:\cygwin64\bin\cygLLVM-3.5.dll - os=4.0 img=0.0 sys=5.2
                  "cygLLVM-3.5.dll" v0.0 ts=2016-03-30 04:42
  337k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64AsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64AsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
  379k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64AsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64AsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
 1136k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64CodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64CodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  418k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64Desc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64Desc-3.7.dll" v0.0 ts=2016-02-10 22:53
  123k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64Disassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64Disassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64Info-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64Info-3.7.dll" v0.0 ts=2016-02-10 22:52
   48k 2016/02/11 C:\cygwin64\bin\cygLLVMAArch64Utils-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAArch64Utils-3.7.dll" v0.0 ts=2016-02-10 22:52
  259k 2016/02/11 C:\cygwin64\bin\cygLLVMAMDGPUAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAMDGPUAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
  147k 2016/02/11 C:\cygwin64\bin\cygLLVMAMDGPUAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAMDGPUAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
 1054k 2016/02/11 C:\cygwin64\bin\cygLLVMAMDGPUCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAMDGPUCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  804k 2016/02/11 C:\cygwin64\bin\cygLLVMAMDGPUDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAMDGPUDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMAMDGPUInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAMDGPUInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMAMDGPUUtils-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAMDGPUUtils-3.7.dll" v0.0 ts=2016-02-10 22:52
 1659k 2016/02/11 C:\cygwin64\bin\cygLLVMAnalysis-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAnalysis-3.7.dll" v0.0 ts=2016-02-10 22:53
  438k 2016/02/11 C:\cygwin64\bin\cygLLVMARMAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMARMAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
  106k 2016/02/11 C:\cygwin64\bin\cygLLVMARMAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMARMAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
 1400k 2016/02/11 C:\cygwin64\bin\cygLLVMARMCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMARMCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  668k 2016/02/11 C:\cygwin64\bin\cygLLVMARMDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMARMDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
  205k 2016/02/11 C:\cygwin64\bin\cygLLVMARMDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMARMDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
   10k 2016/02/11 C:\cygwin64\bin\cygLLVMARMInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMARMInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
  250k 2016/02/11 C:\cygwin64\bin\cygLLVMAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
  443k 2016/02/11 C:\cygwin64\bin\cygLLVMAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:55
  190k 2016/02/11 C:\cygwin64\bin\cygLLVMBitReader-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMBitReader-3.7.dll" v0.0 ts=2016-02-10 22:53
  146k 2016/02/11 C:\cygwin64\bin\cygLLVMBitWriter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMBitWriter-3.7.dll" v0.0 ts=2016-02-10 22:53
   14k 2016/02/11 C:\cygwin64\bin\cygLLVMBPFAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMBPFAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
  122k 2016/02/11 C:\cygwin64\bin\cygLLVMBPFCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMBPFCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
   29k 2016/02/11 C:\cygwin64\bin\cygLLVMBPFDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMBPFDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMBPFInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMBPFInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
 2671k 2016/02/11 C:\cygwin64\bin\cygLLVMCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:54
 2019k 2016/02/11 C:\cygwin64\bin\cygLLVMCore-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMCore-3.7.dll" v0.0 ts=2016-02-10 22:52
  102k 2016/02/11 C:\cygwin64\bin\cygLLVMCppBackendCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMCppBackendCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMCppBackendInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMCppBackendInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
  175k 2016/02/11 C:\cygwin64\bin\cygLLVMDebugInfoDWARF-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMDebugInfoDWARF-3.7.dll" v0.0 ts=2016-02-10 22:53
   95k 2016/02/11 C:\cygwin64\bin\cygLLVMDebugInfoPDB-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMDebugInfoPDB-3.7.dll" v0.0 ts=2016-02-10 22:53
  113k 2016/02/11 C:\cygwin64\bin\cygLLVMExecutionEngine-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMExecutionEngine-3.7.dll" v0.0 ts=2016-02-10 22:53
  765k 2016/02/11 C:\cygwin64\bin\cygLLVMHexagonCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMHexagonCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  379k 2016/02/11 C:\cygwin64\bin\cygLLVMHexagonDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMHexagonDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
   67k 2016/02/11 C:\cygwin64\bin\cygLLVMHexagonDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMHexagonDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMHexagonInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMHexagonInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
  750k 2016/02/11 C:\cygwin64\bin\cygLLVMInstCombine-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMInstCombine-3.7.dll" v0.0 ts=2016-02-10 22:53
  388k 2016/02/11 C:\cygwin64\bin\cygLLVMInstrumentation-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMInstrumentation-3.7.dll" v0.0 ts=2016-02-10 22:53
  136k 2016/02/11 C:\cygwin64\bin\cygLLVMInterpreter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMInterpreter-3.7.dll" v0.0 ts=2016-02-10 22:55
  141k 2016/02/11 C:\cygwin64\bin\cygLLVMipa-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMipa-3.7.dll" v0.0 ts=2016-02-10 22:53
  405k 2016/02/11 C:\cygwin64\bin\cygLLVMipo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMipo-3.7.dll" v0.0 ts=2016-02-10 22:54
   18k 2016/02/11 C:\cygwin64\bin\cygLLVMIRReader-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMIRReader-3.7.dll" v0.0 ts=2016-02-10 22:53
   19k 2016/02/11 C:\cygwin64\bin\cygLLVMLibDriver-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMLibDriver-3.7.dll" v0.0 ts=2016-02-10 22:53
   16k 2016/02/11 C:\cygwin64\bin\cygLLVMLineEditor-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMLineEditor-3.7.dll" v0.0 ts=2016-02-10 22:52
   82k 2016/02/11 C:\cygwin64\bin\cygLLVMLinker-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMLinker-3.7.dll" v0.0 ts=2016-02-10 22:53
   62k 2016/02/11 C:\cygwin64\bin\cygLLVMLTO-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMLTO-3.7.dll" v0.0 ts=2016-02-10 22:55
  447k 2016/02/11 C:\cygwin64\bin\cygLLVMMC-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMC-3.7.dll" v0.0 ts=2016-02-10 22:52
   23k 2016/02/11 C:\cygwin64\bin\cygLLVMMCDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMCDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:52
   39k 2016/02/11 C:\cygwin64\bin\cygLLVMMCJIT-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMCJIT-3.7.dll" v0.0 ts=2016-02-10 22:53
  171k 2016/02/11 C:\cygwin64\bin\cygLLVMMCParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMCParser-3.7.dll" v0.0 ts=2016-02-10 22:52
  157k 2016/02/11 C:\cygwin64\bin\cygLLVMMipsAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMipsAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
   49k 2016/02/11 C:\cygwin64\bin\cygLLVMMipsAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMipsAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
  909k 2016/02/11 C:\cygwin64\bin\cygLLVMMipsCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMipsCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  334k 2016/02/11 C:\cygwin64\bin\cygLLVMMipsDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMipsDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
   74k 2016/02/11 C:\cygwin64\bin\cygLLVMMipsDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMipsDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
   10k 2016/02/11 C:\cygwin64\bin\cygLLVMMipsInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMipsInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
   85k 2016/02/11 C:\cygwin64\bin\cygLLVMMIRParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMIRParser-3.7.dll" v0.0 ts=2016-02-10 22:55
   15k 2016/02/11 C:\cygwin64\bin\cygLLVMMSP430AsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMSP430AsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
  178k 2016/02/11 C:\cygwin64\bin\cygLLVMMSP430CodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMSP430CodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
   31k 2016/02/11 C:\cygwin64\bin\cygLLVMMSP430Desc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMSP430Desc-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMMSP430Info-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMMSP430Info-3.7.dll" v0.0 ts=2016-02-10 22:52
   92k 2016/02/11 C:\cygwin64\bin\cygLLVMNVPTXAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMNVPTXAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:52
  596k 2016/02/11 C:\cygwin64\bin\cygLLVMNVPTXCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMNVPTXCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  241k 2016/02/11 C:\cygwin64\bin\cygLLVMNVPTXDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMNVPTXDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMNVPTXInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMNVPTXInfo-3.7.dll" v0.0 ts=2016-02-10 22:52
  139k 2016/02/11 C:\cygwin64\bin\cygLLVMObjCARCOpts-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMObjCARCOpts-3.7.dll" v0.0 ts=2016-02-10 22:53
  412k 2016/02/11 C:\cygwin64\bin\cygLLVMObject-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMObject-3.7.dll" v0.0 ts=2016-02-10 22:53
   46k 2016/02/11 C:\cygwin64\bin\cygLLVMOption-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMOption-3.7.dll" v0.0 ts=2016-02-10 22:52
  106k 2016/02/11 C:\cygwin64\bin\cygLLVMOrcJIT-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMOrcJIT-3.7.dll" v0.0 ts=2016-02-10 22:53
  137k 2016/02/11 C:\cygwin64\bin\cygLLVMPasses-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPasses-3.7.dll" v0.0 ts=2016-02-10 22:54
  105k 2016/02/11 C:\cygwin64\bin\cygLLVMPowerPCAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPowerPCAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
   95k 2016/02/11 C:\cygwin64\bin\cygLLVMPowerPCAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPowerPCAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:53
 1057k 2016/02/11 C:\cygwin64\bin\cygLLVMPowerPCCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPowerPCCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  283k 2016/02/11 C:\cygwin64\bin\cygLLVMPowerPCDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPowerPCDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
   60k 2016/02/11 C:\cygwin64\bin\cygLLVMPowerPCDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPowerPCDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
   10k 2016/02/11 C:\cygwin64\bin\cygLLVMPowerPCInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMPowerPCInfo-3.7.dll" v0.0 ts=2016-02-10 22:53
  153k 2016/02/11 C:\cygwin64\bin\cygLLVMProfileData-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMProfileData-3.7.dll" v0.0 ts=2016-02-10 22:53
  267k 2016/02/11 C:\cygwin64\bin\cygLLVMRuntimeDyld-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMRuntimeDyld-3.7.dll" v0.0 ts=2016-02-10 22:53
 1418k 2016/02/11 C:\cygwin64\bin\cygLLVMScalarOpts-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMScalarOpts-3.7.dll" v0.0 ts=2016-02-10 22:54
 2272k 2016/02/11 C:\cygwin64\bin\cygLLVMSelectionDAG-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSelectionDAG-3.7.dll" v0.0 ts=2016-02-10 22:55
   62k 2016/02/11 C:\cygwin64\bin\cygLLVMSparcAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSparcAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
   62k 2016/02/11 C:\cygwin64\bin\cygLLVMSparcAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSparcAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:53
  273k 2016/02/11 C:\cygwin64\bin\cygLLVMSparcCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSparcCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  103k 2016/02/11 C:\cygwin64\bin\cygLLVMSparcDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSparcDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
   25k 2016/02/11 C:\cygwin64\bin\cygLLVMSparcDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSparcDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
   10k 2016/02/11 C:\cygwin64\bin\cygLLVMSparcInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSparcInfo-3.7.dll" v0.0 ts=2016-02-10 22:53
  725k 2016/02/11 C:\cygwin64\bin\cygLLVMSupport-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSupport-3.7.dll" v0.0 ts=2016-02-10 22:52
   66k 2016/02/11 C:\cygwin64\bin\cygLLVMSystemZAsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSystemZAsmParser-3.7.dll" v0.0 ts=2016-02-10 22:53
   32k 2016/02/11 C:\cygwin64\bin\cygLLVMSystemZAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSystemZAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:53
  533k 2016/02/11 C:\cygwin64\bin\cygLLVMSystemZCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSystemZCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
  170k 2016/02/11 C:\cygwin64\bin\cygLLVMSystemZDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSystemZDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
   51k 2016/02/11 C:\cygwin64\bin\cygLLVMSystemZDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSystemZDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMSystemZInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMSystemZInfo-3.7.dll" v0.0 ts=2016-02-10 22:53
  233k 2016/02/11 C:\cygwin64\bin\cygLLVMTableGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMTableGen-3.7.dll" v0.0 ts=2016-02-10 22:52
   49k 2016/02/11 C:\cygwin64\bin\cygLLVMTarget-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMTarget-3.7.dll" v0.0 ts=2016-02-10 22:53
  794k 2016/02/11 C:\cygwin64\bin\cygLLVMTransformUtils-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMTransformUtils-3.7.dll" v0.0 ts=2016-02-10 22:53
  332k 2016/02/11 C:\cygwin64\bin\cygLLVMVectorize-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMVectorize-3.7.dll" v0.0 ts=2016-02-10 22:53
  584k 2016/02/11 C:\cygwin64\bin\cygLLVMX86AsmParser-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86AsmParser-3.7.dll" v0.0 ts=2016-02-10 22:56
  271k 2016/02/11 C:\cygwin64\bin\cygLLVMX86AsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86AsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:53
 2050k 2016/02/11 C:\cygwin64\bin\cygLLVMX86CodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86CodeGen-3.7.dll" v0.0 ts=2016-02-10 22:55
 1377k 2016/02/11 C:\cygwin64\bin\cygLLVMX86Desc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86Desc-3.7.dll" v0.0 ts=2016-02-10 22:53
 1408k 2016/02/11 C:\cygwin64\bin\cygLLVMX86Disassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86Disassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMX86Info-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86Info-3.7.dll" v0.0 ts=2016-02-10 22:53
   33k 2016/02/11 C:\cygwin64\bin\cygLLVMX86Utils-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMX86Utils-3.7.dll" v0.0 ts=2016-02-10 22:53
   17k 2016/02/11 C:\cygwin64\bin\cygLLVMXCoreAsmPrinter-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMXCoreAsmPrinter-3.7.dll" v0.0 ts=2016-02-10 22:53
  322k 2016/02/11 C:\cygwin64\bin\cygLLVMXCoreCodeGen-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMXCoreCodeGen-3.7.dll" v0.0 ts=2016-02-10 22:56
   40k 2016/02/11 C:\cygwin64\bin\cygLLVMXCoreDesc-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMXCoreDesc-3.7.dll" v0.0 ts=2016-02-10 22:53
   22k 2016/02/11 C:\cygwin64\bin\cygLLVMXCoreDisassembler-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMXCoreDisassembler-3.7.dll" v0.0 ts=2016-02-10 22:53
    9k 2016/02/11 C:\cygwin64\bin\cygLLVMXCoreInfo-3.7.dll - os=4.0 img=3.7 sys=5.2
                  "cygLLVMXCoreInfo-3.7.dll" v0.0 ts=2016-02-10 22:53
    6k 2016/04/21 C:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2016-04-21 22:13
   35k 2016/02/11 C:\cygwin64\bin\cygltdl-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygltdl-7.dll" v0.0 ts=2016-02-12 00:41
  146k 2015/08/23 C:\cygwin64\bin\cyglua-5.1.dll - os=4.0 img=0.0 sys=5.2
                  "cyglua-5.1.dll" v0.0 ts=2015-08-23 18:43
  162k 2015/06/04 C:\cygwin64\bin\cyglua-5.2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglua-5.2.dll" v0.0 ts=2015-06-04 18:31
  139k 2015/11/09 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2015-11-09 07:12
  126k 2014/11/17 C:\cygwin64\bin\cyglzo2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzo2-2.dll" v0.0 ts=2014-11-17 12:24
  147k 2015/02/13 C:\cygwin64\bin\cygm17n-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygm17n-0.dll" v0.0 ts=2015-02-13 04:39
  108k 2015/02/13 C:\cygwin64\bin\cygm17n-core-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygm17n-core-0.dll" v0.0 ts=2015-02-13 04:39
   39k 2015/02/13 C:\cygwin64\bin\cygm17n-flt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygm17n-flt-0.dll" v0.0 ts=2015-02-13 04:39
  136k 2015/02/13 C:\cygwin64\bin\cygm17n-gui-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygm17n-gui-0.dll" v0.0 ts=2015-02-13 04:39
  114k 2016/01/11 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2016-01-11 23:19
  291k 2013/10/12 C:\cygwin64\bin\cygMagick++-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygMagick++-5.dll" v0.0 ts=2013-10-12 19:21
  346k 2015/02/11 C:\cygwin64\bin\cygMagick++-6.Q16-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygMagick++-6.Q16-5.dll" v0.0 ts=2015-02-11 00:24
 4157k 2013/10/12 C:\cygwin64\bin\cygMagickCore-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygMagickCore-5.dll" v0.0 ts=2013-10-12 19:17
 4477k 2016/05/04 C:\cygwin64\bin\cygMagickCore-6.Q16-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygMagickCore-6.Q16-2.dll" v0.0 ts=2016-05-04 22:42
 1088k 2013/10/12 C:\cygwin64\bin\cygMagickWand-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygMagickWand-5.dll" v0.0 ts=2013-10-12 19:19
 1149k 2016/05/04 C:\cygwin64\bin\cygMagickWand-6.Q16-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygMagickWand-6.Q16-2.dll" v0.0 ts=2016-05-04 22:43
  168k 2015/10/09 C:\cygwin64\bin\cygman-2-7-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-4.dll" v0.0 ts=2015-10-09 04:12
   22k 2015/10/09 C:\cygwin64\bin\cygmandb-2-7-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-4.dll" v0.0 ts=2015-10-09 04:18
  132k 2014/01/21 C:\cygwin64\bin\cygmcpp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygmcpp-0.dll" v0.0 ts=2014-01-21 19:41
   29k 2016/05/03 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2016-05-03 15:30
   42k 2013/08/12 C:\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetalink-3.dll" v0.0 ts=2013-08-13 01:02
  347k 2013/07/14 C:\cygwin64\bin\cygmetis-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetis-0.dll" v0.0 ts=2013-07-14 14:12
  327k 2015/08/11 C:\cygwin64\bin\cygming-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygming-1.dll" v0.0 ts=2015-08-11 11:00
  370k 2013/05/02 C:\cygwin64\bin\cygmng-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmng-1.dll" v0.0 ts=2013-05-02 13:20
   89k 2015/03/01 C:\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2015-03-01 21:24
  345k 2016/03/06 C:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2016-03-06 17:29
  120k 2015/01/12 C:\cygwin64\bin\cygMrm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygMrm-4.dll" v0.0 ts=2015-01-12 06:03
 2843k 2015/08/23 C:\cygwin64\bin\cygmysqlclient-18.dll - os=4.0 img=18.0 sys=5.2
                  "cygmysqlclient-18.dll" v0.0 ts=2015-08-23 22:29
  493k 2016/03/24 C:\cygwin64\bin\cygnativeGLthunk.dll - os=4.0 img=0.0 sys=5.2
                  "cygnativeGLthunk.dll" v0.0 ts=2016-03-24 19:46
   53k 2016/05/03 C:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2016-05-03 15:36
  279k 2016/05/03 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2016-05-03 15:29
  131k 2014/11/14 C:\cygwin64\bin\cygneon-27.dll - os=4.0 img=0.0 sys=5.2
                  "cygneon-27.dll" v0.0 ts=2014-11-14 14:02
  180k 2016/03/13 C:\cygwin64\bin\cygnettle-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygnettle-4.dll" v0.0 ts=2016-03-13 14:46
  126k 2016/03/02 C:\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2016-03-02 19:23
15877k 2016/03/22 C:\cygwin64\bin\cygoctave-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygoctave-3.dll" v0.0 ts=2016-03-22 11:09
 2354k 2016/03/22 C:\cygwin64\bin\cygoctgui-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygoctgui-1.dll" v0.0 ts=2016-03-22 11:53
15308k 2016/03/22 C:\cygwin64\bin\cygoctinterp-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygoctinterp-3.dll" v0.0 ts=2016-03-22 11:36
   22k 2013/06/01 C:\cygwin64\bin\cygogg-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygogg-0.dll" v0.0 ts=2013-06-01 18:40
  176k 2015/10/27 C:\cygwin64\bin\cygopenjp2-7.dll - os=4.0 img=2.1 sys=5.2
                  "cygopenjp2-7.dll" v0.0 ts=2015-10-27 19:16
  126k 2016/03/04 C:\cygwin64\bin\cygopenjpeg-1.dll - os=4.0 img=1.5 sys=5.2
                  "cygopenjpeg-1.dll" v0.0 ts=2016-03-04 17:09
   30k 2015/01/13 C:\cygwin64\bin\cygOpenVG-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygOpenVG-1.dll" v0.0 ts=2015-01-13 10:53
  317k 2013/05/06 C:\cygwin64\bin\cygORBit-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygORBit-2-0.dll" v0.0 ts=2013-05-06 03:46
   34k 2013/05/06 C:\cygwin64\bin\cygORBit-imodule-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygORBit-imodule-2-0.dll" v0.0 ts=2013-05-06 03:46
   22k 2013/05/06 C:\cygwin64\bin\cygORBitCosNaming-2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygORBitCosNaming-2-0.dll" v0.0 ts=2013-05-06 03:46
 4222k 2016/05/09 C:\cygwin64\bin\cygOSMesa-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygOSMesa-8.dll" v0.0 ts=2016-05-09 19:43
   78k 2013/10/31 C:\cygwin64\bin\cygotf-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygotf-0.dll" v0.0 ts=2013-10-31 02:30
  319k 2015/06/01 C:\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2015-06-01 20:02
   14k 2016/05/03 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2016-05-03 15:30
  258k 2015/11/15 C:\cygwin64\bin\cygpango-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpango-1.0-0.dll" v0.0 ts=2015-11-15 03:56
   43k 2015/11/15 C:\cygwin64\bin\cygpangocairo-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2015-11-15 03:56
   71k 2015/11/15 C:\cygwin64\bin\cygpangoft2-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2015-11-15 03:56
  113k 2013/06/05 C:\cygwin64\bin\cygpangox-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangox-1.0-0.dll" v0.0 ts=2013-06-05 07:41
   28k 2015/11/15 C:\cygwin64\bin\cygpangoxft-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2015-11-15 03:56
   11k 2013/07/23 C:\cygwin64\bin\cygpaper-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpaper-1.dll" v0.0 ts=2013-07-23 06:40
   33k 2015/06/29 C:\cygwin64\bin\cygpathplan-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygpathplan-4.dll" v0.0 ts=2015-06-29 23:51
  465k 2016/03/30 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2016-03-30 23:00
  430k 2016/03/30 C:\cygwin64\bin\cygpcre16-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre16-0.dll" v0.0 ts=2016-03-30 23:00
  418k 2016/03/30 C:\cygwin64\bin\cygpcre32-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre32-0.dll" v0.0 ts=2016-03-30 23:01
   31k 2016/03/30 C:\cygwin64\bin\cygpcrecpp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcrecpp-0.dll" v0.0 ts=2016-03-30 23:00
   11k 2016/03/30 C:\cygwin64\bin\cygpcreposix-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcreposix-0.dll" v0.0 ts=2016-03-30 23:00
 2021k 2016/04/30 C:\cygwin64\bin\cygperl5_22.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_22.dll" v0.0 ts=2016-04-30 17:05
   39k 2015/04/09 C:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 22:04
  657k 2015/10/26 C:\cygwin64\bin\cygpixman-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpixman-1-0.dll" v0.0 ts=2015-10-27 00:52
 1000k 2016/04/19 C:\cygwin64\bin\cygplotter-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygplotter-2.dll" v0.0 ts=2016-04-18 10:28
  149k 2015/04/13 C:\cygwin64\bin\cygpng15-15.dll - os=4.0 img=0.0 sys=5.2
                  "cygpng15-15.dll" v0.0 ts=2015-04-13 20:37
  175k 2015/12/04 C:\cygwin64\bin\cygpng16-16.dll - os=4.0 img=0.0 sys=5.2
                  "cygpng16-16.dll" v0.0 ts=2015-12-04 05:46
 1847k 2013/06/05 C:\cygwin64\bin\cygpoppler-28.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-28.dll" v0.0 ts=2013-06-05 07:22
 1866k 2014/01/13 C:\cygwin64\bin\cygpoppler-37.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-37.dll" v0.0 ts=2014-01-13 05:09
 1897k 2014/02/23 C:\cygwin64\bin\cygpoppler-44.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-44.dll" v0.0 ts=2014-02-23 21:36
 2003k 2015/04/13 C:\cygwin64\bin\cygpoppler-46.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-46.dll" v0.0 ts=2015-04-13 19:12
 2049k 2015/04/28 C:\cygwin64\bin\cygpoppler-49.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-49.dll" v0.0 ts=2015-04-28 20:39
 1994k 2016/05/05 C:\cygwin64\bin\cygpoppler-55.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-55.dll" v0.0 ts=2016-05-05 04:47
   56k 2016/05/05 C:\cygwin64\bin\cygpoppler-cpp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-cpp-0.dll" v0.0 ts=2016-05-05 04:49
  278k 2016/05/05 C:\cygwin64\bin\cygpoppler-glib-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygpoppler-glib-8.dll" v0.0 ts=2016-05-05 04:47
   41k 2013/10/21 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2013-10-21 22:52
  152k 2016/04/01 C:\cygwin64\bin\cygpq-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpq-5.dll" v0.0 ts=2016-04-01 09:15
   57k 2016/03/22 C:\cygwin64\bin\cygprocps-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygprocps-4.dll" v0.0 ts=2016-03-22 19:01
  113k 2015/06/29 C:\cygwin64\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=5.2
                  "cygproxy-1.dll" v0.0 ts=2015-06-29 23:39
   48k 2016/03/31 C:\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2016-03-31 07:37
    8k 2013/04/30 C:\cygwin64\bin\cygpspell-15.dll - os=4.0 img=0.0 sys=5.2
                  "cygpspell-15.dll" v0.0 ts=2013-04-30 09:12
  355k 2015/02/12 C:\cygwin64\bin\cygpstoedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpstoedit-0.dll" v0.0 ts=2015-02-12 18:10
   38k 2016/04/10 C:\cygwin64\bin\cygptexenc-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygptexenc-1.dll" v0.0 ts=2016-04-10 04:50
  291k 2015/12/29 C:\cygwin64\bin\cygpulse-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpulse-0.dll" v0.0 ts=2015-12-29 20:47
  435k 2015/12/29 C:\cygwin64\bin\cygpulsecommon-7.1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpulsecommon-7.1.dll" v0.0 ts=2015-12-29 20:47
   15k 2013/10/24 C:\cygwin64\bin\cygpyglib-2.0-python2.7-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpyglib-2.0-python2.7-0.dll" v0.0 ts=2013-10-24 21:39
  310k 2013/03/18 C:\cygwin64\bin\cygqhull-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygqhull-6.dll" v0.0 ts=2013-03-18 10:56
  320k 2016/02/03 C:\cygwin64\bin\cygqhull-7.dll - os=4.0 img=7.2 sys=5.2
                  "cygqhull-7.dll" v0.0 ts=2016-02-03 09:49
  319k 2013/03/18 C:\cygwin64\bin\cygqhull_p-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygqhull_p-6.dll" v0.0 ts=2013-03-18 10:56
  328k 2016/02/03 C:\cygwin64\bin\cygqhull_p-7.dll - os=4.0 img=7.2 sys=5.2
                  "cygqhull_p-7.dll" v0.0 ts=2016-02-03 09:50
  329k 2016/02/03 C:\cygwin64\bin\cygqhull_r-7.dll - os=4.0 img=7.2 sys=5.2
                  "cygqhull_r-7.dll" v0.0 ts=2016-02-03 09:50
   94k 2015/11/14 C:\cygwin64\bin\cygqrupdate-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygqrupdate-0.dll" v0.0 ts=2015-11-14 13:54
 2777k 2015/05/06 C:\cygwin64\bin\cygqscintilla2-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygqscintilla2-11.dll" v0.0 ts=2015-05-06 08:31
 2945k 2015/10/19 C:\cygwin64\bin\cygqscintilla2-12.dll - os=4.0 img=0.0 sys=5.2
                  "cygqscintilla2-12.dll" v0.0 ts=2015-10-19 20:45
 2702k 2015/05/27 C:\cygwin64\bin\cygQtCore-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygQtCore-4.dll" v0.0 ts=2015-05-28 00:58
10059k 2015/05/27 C:\cygwin64\bin\cygQtGui-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygQtGui-4.dll" v0.0 ts=2015-05-28 01:06
 1266k 2015/05/27 C:\cygwin64\bin\cygQtNetwork-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygQtNetwork-4.dll" v0.0 ts=2015-05-28 00:59
  946k 2015/05/27 C:\cygwin64\bin\cygQtOpenGL-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygQtOpenGL-4.dll" v0.0 ts=2015-05-28 01:10
  308k 2016/04/17 C:\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygquadmath-0.dll" v0.0 ts=2016-04-17 15:36
   83k 2013/06/05 C:\cygwin64\bin\cygrarian-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygrarian-0.dll" v0.0 ts=2013-06-05 02:24
  207k 2015/01/27 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2015-01-27 04:51
   71k 2015/03/26 C:\cygwin64\bin\cygrest-0.7-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygrest-0.7-0.dll" v0.0 ts=2015-03-26 20:33
   28k 2015/03/26 C:\cygwin64\bin\cygrest-extras-0.7-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygrest-extras-0.7-0.dll" v0.0 ts=2015-03-26 20:33
   57k 2014/03/20 C:\cygwin64\bin\cygroken-18.dll - os=4.0 img=0.0 sys=5.2
                  "cygroken-18.dll" v0.0 ts=2014-03-20 04:53
  201k 2015/11/15 C:\cygwin64\bin\cygrsvg-2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygrsvg-2-2.dll" v0.0 ts=2015-11-15 04:08
 2237k 2016/01/28 C:\cygwin64\bin\cygruby220.dll - os=4.0 img=0.0 sys=5.2
                  "cygruby220.dll" v2.2 ts=2016-01-28 05:36
   97k 2014/11/24 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2014-11-24 19:22
  249k 2015/11/15 C:\cygwin64\bin\cygsecret-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsecret-1-0.dll" v0.0 ts=2015-11-15 03:47
   84k 2014/12/20 C:\cygwin64\bin\cygserf-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygserf-1-0.dll" v0.0 ts=2014-12-20 17:56
   11k 2015/07/17 C:\cygwin64\bin\cygsigsegv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 23:35
   28k 2014/01/14 C:\cygwin64\bin\cygSM-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygSM-6.dll" v0.0 ts=2014-01-15 00:23
   89k 2015/03/23 C:\cygwin64\bin\cygsmartcols-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 09:46
  326k 2016/01/28 C:\cygwin64\bin\cygsndfile-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsndfile-1.dll" v0.0 ts=2016-01-28 19:52
  630k 2015/11/15 C:\cygwin64\bin\cygsoup-2.4-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsoup-2.4-1.dll" v0.0 ts=2015-11-15 04:05
   11k 2015/11/15 C:\cygwin64\bin\cygsoup-gnome-2.4-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsoup-gnome-2.4-1.dll" v0.0 ts=2015-11-15 04:05
  928k 2016/04/21 C:\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsqlite3-0.dll" v0.0 ts=2016-04-21 10:37
  156k 2016/03/02 C:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 19:03
  397k 2016/05/04 C:\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2016-05-04 17:07
   12k 2016/04/17 C:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2016-04-17 15:30
   30k 2013/06/05 C:\cygwin64\bin\cygstartup-notification-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygstartup-notification-1-0.dll" v0.0 ts=2013-06-06 01:39
 1337k 2016/04/17 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2016-04-17 15:01
    8k 2013/07/14 C:\cygwin64\bin\cygsuitesparseconfig-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsuitesparseconfig-0.dll" v0.0 ts=2013-07-14 16:16
   11k 2016/02/21 C:\cygwin64\bin\cygsuitesparseconfig-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsuitesparseconfig-1.dll" v0.0 ts=2016-02-21 19:32
   12k 2016/04/30 C:\cygwin64\bin\cygsvn_auth_gnome_keyring-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_auth_gnome_keyring-1-0.dll" v0.0 ts=2016-04-30 19:10
  386k 2016/04/30 C:\cygwin64\bin\cygsvn_client-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_client-1-0.dll" v0.0 ts=2016-04-30 19:11
   61k 2016/04/30 C:\cygwin64\bin\cygsvn_delta-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_delta-1-0.dll" v0.0 ts=2016-04-30 19:10
   75k 2016/04/30 C:\cygwin64\bin\cygsvn_diff-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_diff-1-0.dll" v0.0 ts=2016-04-30 19:10
   36k 2016/04/30 C:\cygwin64\bin\cygsvn_fs-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs-1-0.dll" v0.0 ts=2016-04-30 19:10
  154k 2016/04/30 C:\cygwin64\bin\cygsvn_fs_base-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_base-1-0.dll" v0.0 ts=2016-04-30 19:10
  260k 2016/04/30 C:\cygwin64\bin\cygsvn_fs_fs-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_fs-1-0.dll" v0.0 ts=2016-04-30 19:10
   12k 2016/04/30 C:\cygwin64\bin\cygsvn_fs_util-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_util-1-0.dll" v0.0 ts=2016-04-30 19:10
  271k 2016/04/30 C:\cygwin64\bin\cygsvn_fs_x-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_x-1-0.dll" v0.0 ts=2016-04-30 19:10
   44k 2016/04/30 C:\cygwin64\bin\cygsvn_ra-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra-1-0.dll" v0.0 ts=2016-04-30 19:11
   31k 2016/04/30 C:\cygwin64\bin\cygsvn_ra_local-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra_local-1-0.dll" v0.0 ts=2016-04-30 19:10
  167k 2016/04/30 C:\cygwin64\bin\cygsvn_ra_serf-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra_serf-1-0.dll" v0.0 ts=2016-04-30 19:10
   99k 2016/04/30 C:\cygwin64\bin\cygsvn_ra_svn-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra_svn-1-0.dll" v0.0 ts=2016-04-30 19:10
  190k 2016/04/30 C:\cygwin64\bin\cygsvn_repos-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_repos-1-0.dll" v0.0 ts=2016-04-30 19:10
  942k 2016/04/30 C:\cygwin64\bin\cygsvn_subr-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_subr-1-0.dll" v0.0 ts=2016-04-30 19:10
   40k 2016/04/30 C:\cygwin64\bin\cygsvn_swig_perl-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_swig_perl-1-0.dll" v0.0 ts=2016-04-30 19:14
   69k 2016/04/30 C:\cygwin64\bin\cygsvn_swig_py-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_swig_py-1-0.dll" v0.0 ts=2016-04-30 19:16
   64k 2016/04/30 C:\cygwin64\bin\cygsvn_swig_ruby-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_swig_ruby-1-0.dll" v0.0 ts=2016-04-30 19:12
  647k 2016/04/30 C:\cygwin64\bin\cygsvn_wc-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_wc-1-0.dll" v0.0 ts=2016-04-30 19:10
   60k 2016/04/10 C:\cygwin64\bin\cygsynctex-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsynctex-1.dll" v0.0 ts=2016-04-10 04:58
  242k 2013/04/26 C:\cygwin64\bin\cygt1-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygt1-5.dll" v0.0 ts=2013-04-25 18:35
   66k 2016/02/04 C:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2016-02-04 14:53
   65k 2013/06/02 C:\cygwin64\bin\cygtdb-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygtdb-1.dll" v0.0 ts=2013-06-02 22:35
  162k 2016/04/10 C:\cygwin64\bin\cygtexlua52-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygtexlua52-5.dll" v0.0 ts=2016-04-10 04:50
  406k 2016/04/10 C:\cygwin64\bin\cygtexluajit-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygtexluajit-2.dll" v0.0 ts=2016-04-10 04:51
   32k 2014/11/12 C:\cygwin64\bin\cygthai-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygthai-0.dll" v0.0 ts=2014-11-12 17:31
   53k 2016/05/03 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2016-05-03 15:29
  363k 2014/05/15 C:\cygwin64\bin\cygtiff-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygtiff-5.dll" v0.0 ts=1970-01-01 01:00
  420k 2015/10/28 C:\cygwin64\bin\cygtiff-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtiff-6.dll" v0.0 ts=2015-10-28 21:37
   12k 2014/05/15 C:\cygwin64\bin\cygtiffxx-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygtiffxx-5.dll" v0.0 ts=1970-01-01 01:00
   11k 2015/10/28 C:\cygwin64\bin\cygtiffxx-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtiffxx-6.dll" v0.0 ts=2015-10-28 21:37
  158k 2016/04/14 C:\cygwin64\bin\cygtirpc-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygtirpc-1.dll" v0.0 ts=2016-04-14 20:41
  218k 2016/05/10 C:\cygwin64\bin\cygtxc_dxtn.dll - os=4.0 img=0.0 sys=5.2
                  "cygtxc_dxtn.dll" v0.0 ts=2016-05-10 07:31
  363k 2015/01/12 C:\cygwin64\bin\cygUil-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygUil-4.dll" v0.0 ts=2015-01-12 06:04
  677k 2013/07/14 C:\cygwin64\bin\cygumfpack-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygumfpack-0.dll" v0.0 ts=2013-07-14 22:49
  699k 2016/03/11 C:\cygwin64\bin\cygumfpack-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygumfpack-1.dll" v0.0 ts=2016-03-11 15:01
 1154k 2013/04/20 C:\cygwin64\bin\cygunistring-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-0.dll" v0.0 ts=2013-04-20 20:38
 1538k 2015/10/16 C:\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2015-10-16 22:40
   73k 2015/02/11 C:\cygwin64\bin\cygusb0.dll - os=4.0 img=0.0 sys=5.2
                  "cygusb0.dll" v0.0 ts=2015-02-11 02:16
   15k 2015/03/23 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 09:46
   17k 2014/05/16 C:\cygwin64\bin\cygverto-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygverto-1.dll" v0.0 ts=1970-01-01 01:00
  331k 2015/08/28 C:\cygwin64\bin\cygvoikko-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygvoikko-1.dll" v0.0 ts=2015-08-28 19:15
  165k 2015/03/08 C:\cygwin64\bin\cygvorbis-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvorbis-0.dll" v0.0 ts=2015-03-08 01:24
  641k 2015/03/08 C:\cygwin64\bin\cygvorbisenc-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygvorbisenc-2.dll" v0.0 ts=2015-03-08 01:24
   29k 2015/03/08 C:\cygwin64\bin\cygvorbisfile-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygvorbisfile-3.dll" v0.0 ts=2015-03-08 01:24
 2191k 2015/10/01 C:\cygwin64\bin\cygvpx-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygvpx-1.dll" v0.0 ts=2015-10-01 22:34
  578k 2015/08/04 C:\cygwin64\bin\cygvte-9.dll - os=4.0 img=0.0 sys=5.2
                  "cygvte-9.dll" v0.0 ts=2015-08-03 23:16
    8k 2016/04/17 C:\cygwin64\bin\cygvtv-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvtv-0.dll" v0.0 ts=2016-04-17 15:30
    8k 2016/04/17 C:\cygwin64\bin\cygvtv_stubs-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvtv_stubs-0.dll" v0.0 ts=2016-04-17 15:31
  343k 2015/03/26 C:\cygwin64\bin\cygwebp-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygwebp-5.dll" v0.0 ts=2015-03-26 16:04
   27k 2015/03/26 C:\cygwin64\bin\cygwebpmux-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwebpmux-1.dll" v0.0 ts=2015-03-26 16:04
  161k 2014/03/20 C:\cygwin64\bin\cygwind-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygwind-0.dll" v0.0 ts=2014-03-20 04:53
  312k 2015/06/30 C:\cygwin64\bin\cygwmf-0-2-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygwmf-0-2-7.dll" v0.0 ts=2015-06-30 05:52
  101k 2015/06/30 C:\cygwin64\bin\cygwmflite-0-2-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygwmflite-0-2-7.dll" v0.0 ts=2015-06-30 05:52
  208k 2013/06/24 C:\cygwin64\bin\cygwnck-1-22.dll - os=4.0 img=0.0 sys=5.2
                  "cygwnck-1-22.dll" v0.0 ts=2013-06-24 03:39
   30k 2013/11/15 C:\cygwin64\bin\cygwrap-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygwrap-0.dll" v0.0 ts=2013-11-15 20:58
 1134k 2015/03/26 C:\cygwin64\bin\cygX11-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygX11-6.dll" v0.0 ts=2015-03-26 15:14
    9k 2015/03/26 C:\cygwin64\bin\cygX11-xcb-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygX11-xcb-1.dll" v0.0 ts=2015-03-26 15:14
   12k 2013/06/06 C:\cygwin64\bin\cygXau-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXau-6.dll" v0.0 ts=2013-06-06 07:23
  375k 2016/01/29 C:\cygwin64\bin\cygXaw-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygXaw-7.dll" v0.0 ts=2016-01-29 21:32
  296k 2014/08/10 C:\cygwin64\bin\cygXaw3d-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygXaw3d-8.dll" v0.0 ts=1970-01-01 01:00
  102k 2015/09/07 C:\cygwin64\bin\cygxcb-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-1.dll" v0.0 ts=2015-09-07 06:50
   12k 2015/09/07 C:\cygwin64\bin\cygxcb-composite-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-composite-0.dll" v0.0 ts=2015-09-07 06:50
   40k 2014/08/10 C:\cygwin64\bin\cygxcb-ewmh-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-ewmh-2.dll" v0.0 ts=1970-01-01 01:00
   70k 2015/09/07 C:\cygwin64\bin\cygxcb-glx-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-glx-0.dll" v0.0 ts=2015-09-07 06:50
   17k 2014/08/10 C:\cygwin64\bin\cygxcb-icccm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-icccm-4.dll" v0.0 ts=1970-01-01 01:00
   16k 2013/03/17 C:\cygwin64\bin\cygxcb-image-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-image-0.dll" v0.0 ts=2013-03-17 22:42
   31k 2015/09/07 C:\cygwin64\bin\cygxcb-render-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-render-0.dll" v0.0 ts=2015-09-07 06:50
   13k 2015/09/07 C:\cygwin64\bin\cygxcb-shape-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-shape-0.dll" v0.0 ts=2015-09-07 06:50
   12k 2015/09/07 C:\cygwin64\bin\cygxcb-shm-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-shm-0.dll" v0.0 ts=2015-09-07 06:50
   17k 2013/03/17 C:\cygwin64\bin\cygxcb-util-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-util-1.dll" v0.0 ts=2013-03-17 22:33
   11k 2013/03/18 C:\cygwin64\bin\cygXcomposite-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXcomposite-1.dll" v0.0 ts=2013-03-18 23:05
   34k 2013/06/06 C:\cygwin64\bin\cygXcursor-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXcursor-1.dll" v0.0 ts=2013-06-06 22:15
   10k 2013/04/08 C:\cygwin64\bin\cygXdamage-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXdamage-1.dll" v0.0 ts=2013-04-08 23:24
   21k 2015/03/26 C:\cygwin64\bin\cygXdmcp-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXdmcp-6.dll" v0.0 ts=2015-03-26 15:38
   56k 2014/08/10 C:\cygwin64\bin\cygXext-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXext-6.dll" v0.0 ts=1970-01-01 01:00
   19k 2013/06/06 C:\cygwin64\bin\cygXfixes-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygXfixes-3.dll" v0.0 ts=2013-06-06 21:27
  209k 2015/03/17 C:\cygwin64\bin\cygXfont-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXfont-1.dll" v0.0 ts=2015-03-17 16:53
   73k 2014/08/10 C:\cygwin64\bin\cygXft-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXft-2.dll" v0.0 ts=1970-01-01 01:00
   57k 2016/01/29 C:\cygwin64\bin\cygXi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXi-6.dll" v0.0 ts=2016-01-29 21:23
   10k 2013/06/06 C:\cygwin64\bin\cygXinerama-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXinerama-1.dll" v0.0 ts=2013-06-06 22:33
  128k 2016/01/29 C:\cygwin64\bin\cygxkbfile-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxkbfile-1.dll" v0.0 ts=2016-01-29 21:31
 2274k 2015/01/12 C:\cygwin64\bin\cygXm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygXm-4.dll" v0.0 ts=2015-01-12 06:03
 1206k 2015/11/27 C:\cygwin64\bin\cygxml2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxml2-2.dll" v0.0 ts=2015-11-27 21:22
   85k 2014/01/15 C:\cygwin64\bin\cygXmu-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXmu-6.dll" v0.0 ts=2014-01-15 03:27
   14k 2014/01/15 C:\cygwin64\bin\cygXmuu-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXmuu-1.dll" v0.0 ts=2014-01-15 03:27
   59k 2014/01/15 C:\cygwin64\bin\cygXpm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygXpm-4.dll" v0.0 ts=2014-01-15 01:59
   54k 2013/07/01 C:\cygwin64\bin\cygXpm-noX-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygXpm-noX-4.dll" v0.0 ts=2013-07-01 13:24
   36k 2016/01/29 C:\cygwin64\bin\cygXrandr-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXrandr-2.dll" v0.0 ts=2016-01-29 21:27
   36k 2016/01/29 C:\cygwin64\bin\cygXrender-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXrender-1.dll" v0.0 ts=2016-01-29 21:24
   10k 2013/06/06 C:\cygwin64\bin\cygXRes-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXRes-1.dll" v0.0 ts=2013-06-06 22:47
  208k 2015/03/18 C:\cygwin64\bin\cygxslt-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxslt-1.dll" v0.0 ts=2015-03-19 00:39
   12k 2013/03/14 C:\cygwin64\bin\cygXss-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXss-1.dll" v0.0 ts=2013-03-14 04:07
  326k 2016/01/29 C:\cygwin64\bin\cygXt-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXt-6.dll" v0.0 ts=2016-01-29 21:26
   21k 2013/06/06 C:\cygwin64\bin\cygXtst-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXtst-6.dll" v0.0 ts=2013-06-06 21:36
  121k 2014/12/08 C:\cygwin64\bin\cygyaml-0-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygyaml-0-2.dll" v0.0 ts=2014-12-08 19:19
   80k 2014/11/19 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2014-11-20 00:08
   61k 2015/03/26 C:\cygwin64\bin\cygzip-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygzip-2.dll" v0.0 ts=2015-03-26 20:04
   24k 2013/05/30 C:\cygwin64\bin\cygzzip-0-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygzzip-0-13.dll" v0.0 ts=2013-05-30 04:34
   12k 2013/05/30 C:\cygwin64\bin\cygzzipfseeko-0-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygzzipfseeko-0-13.dll" v0.0 ts=2013-05-30 04:34
   15k 2013/05/30 C:\cygwin64\bin\cygzzipmmapped-0-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygzzipmmapped-0-13.dll" v0.0 ts=2013-05-30 04:34
    9k 2013/05/30 C:\cygwin64\bin\cygzzipwrap-0-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygzzipwrap-0-13.dll" v0.0 ts=2013-05-30 04:34
 3456k 2016/04/21 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2016-04-21 22:14
    Cygwin DLL version info:
        DLL version: 2.5.1
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 297
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5

  448k 2016/02/25 C:\cygwin64\lib\lapack\cygblas-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygblas-0.dll" v0.0 ts=2016-02-25 11:32
 6057k 2016/02/25 C:\cygwin64\lib\lapack\cyglapack-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyglapack-0.dll" v0.0 ts=2016-02-25 11:32

No Cygwin services found.


Cygwin Package Information
Last downloaded files to: C:\cygwin64Packages
Last downloaded files from: http://ftp.inf.tu-dresden.de/software/windows/cygwin32/

Package                                 Version                       Status
_autorebase                             001004-1                      OK
Empty package _update-info-dir
_update-info-dir                        03000-1                       OK
adwaita-icon-theme                      3.18.0-1                      OK
adwaita-themes                          3.18.0-1                      OK
alternatives                            1.3.30c-10                    OK
Empty package apache2
apache2                                 2.4.20-1                      OK
aspell                                  0.60.6.1-1                    OK
aspell-de                               20030222.1-1                  OK
aspell-en                               7.1.0-1                       OK
aspell-pl                               6.0_20061121.0-1              OK
at-spi2-core                            2.18.3-1                      OK
autoconf                                13-1                          OK
autoconf2.1                             2.13-12                       OK
autoconf2.5                             2.69-3                        OK
automake                                9-1                           OK
automake1.10                            1.10.3-2                      OK
automake1.11                            1.11.6-2                      OK
automake1.12                            1.12.6-2                      OK
automake1.13                            1.13.4-1                      OK
automake1.14                            1.14.1-2                      OK
automake1.15                            1.15-1                        OK
automake1.4                             1.4p6-11                      OK
automake1.5                             1.5-11                        OK
automake1.6                             1.6.3-12                      OK
automake1.7                             1.7.9-11                      OK
automake1.8                             1.8.5-11                      OK
automake1.9                             1.9.6-11                      OK
base-cygwin                             3.8-1                         OK
base-files                              4.2-4                         OK
bash                                    4.3.42-4                      OK
bash-completion                         2.3-1                         OK
bashdb                                  3.1_0.09-1                    OK
biber                                   2.4-1                         OK
binutils                                2.25-4                        OK
bison                                   3.0.4-1                       OK
bitstream-vera-fonts                    1.10-2                        OK
build-docbook-catalog                   1.5-2                         OK
bzip2                                   1.0.6-2                       OK
ca-certificates                         2.7-1                         OK
clisp                                   2.49-6.20150312hg15611        OK
cmake                                   3.3.2-1                       OK
compositeproto                          0.4.2-1                       OK
coreutils                               8.25-3                        OK
crypt                                   1.3-1                         OK
csih                                    0.9.9-1                       OK
curl                                    7.49.0-1                      OK
cygport                                 0.22.0-1                      OK
cygrunsrv                               1.62-1                        OK
cygutils                                1.4.15-2                      OK
cygutils-extra                          1.4.15-2                      OK
cygutils-x11                            1.4.15-2                      OK
cygwin                                  2.5.1-1                       OK
cygwin-debuginfo                        2.5.1-1                       OK
cygwin-devel                            2.5.1-1                       OK
cygwin32                                2.5.1-1                       OK
cygwin32-binutils                       2.25-1                        OK
cygwin32-default-manifest               6.4-1                         OK
cygwin32-gcc-core                       5.3.0-3                       OK
cygwin32-gcc-g++                        5.3.0-3                       OK
cygwin32-w32api-headers                 4.0.4-1                       OK
cygwin32-w32api-runtime                 4.0.4-1                       OK
cyrus-sasl                              2.1.26-9                      OK
damageproto                             1.2.1-1                       OK
dash                                    0.5.8-3                       OK
dbus                                    1.10.8-1                      OK
dbus-bash-completion                    0.106-1                       OK
dbus-x11                                1.10.8-1                      OK
dconf                                   0.24.0-1                      OK
dconf-editor                            3.18.2-1                      OK
dconf-service                           0.24.0-1                      OK
dejavu-fonts                            2.35-2                        OK
desktop-file-utils                      0.22-2                        OK
dialog                                  1.3-1.20160424                OK
diffstat                                1.61-1                        OK
diffutils                               3.3-3                         OK
docbook-xml412                          4.1.2-2                       OK
docbook-xml42                           4.2-4                         OK
docbook-xml43                           4.3-2                         OK
docbook-xml44                           4.4-2                         OK
docbook-xsl                             1.77.1-1                      OK
dos2unix                                7.3.3-1                       OK
dri-drivers                             11.2.2-1                      OK
ed                                      1.13-1                        OK
editrights                              1.03-1                        OK
Missing file: /usr/share/info/info.info.gz from package emacs
emacs                                   24.5-2                        Incomplete
emacs-auctex                            11.89-1                       OK
emacs-el                                24.5-2                        OK
emacs-w32                               24.5-2                        OK
emacs-X11                               24.5-2                        OK
fbpanel                                 6.1-6                         OK
file                                    5.25-1                        OK
findutils                               4.6.0-1                       OK
fixesproto                              5.0-1                         OK
flex                                    2.6.1-1                       OK
Empty package font-adobe-dpi75
font-adobe-dpi75                        7.5-2                         OK
Empty package font-alias
font-alias                              7.5-2                         OK
Empty package font-bitstream-vera-ttf
font-bitstream-vera-ttf                 1.10-2                        OK
Empty package font-encodings
font-encodings                          7.5-2                         OK
Empty package font-misc-misc
font-misc-misc                          7.5-2                         OK
fontconfig                              2.11.94-1                     OK
gamin                                   0.1.10-15                     OK
gawk                                    4.1.3-1                       OK
gcc-core                                5.3.0-5                       OK
gcc-debuginfo                           5.3.0-5                       OK
gcc-fortran                             5.3.0-5                       OK
gcc-g++                                 5.3.0-5                       OK
gconf-desktop-schemas                   2.32.1-3                      OK
GConf2                                  3.2.6-2                       OK
gcr                                     3.18.0-1                      OK
gdb                                     7.10.1-1                      OK
gdk-pixbuf2-wmf                         0.2.8.4-15                    OK
gdk-pixbuf2.0-svg                       2.40.11-1                     OK
getent                                  2.18.90-4                     OK
gettext                                 0.19.7-1                      OK
gettext-devel                           0.19.7-1                      OK
ghostscript                             9.15-2                        OK
ghostscript-fonts-other                 6.0-1                         OK
ghostscript-fonts-std                   8.11-1                        OK
girepository-Atk1.0                     2.18.0-1                      OK
girepository-cairo1.0                   1.46.0-1                      OK
girepository-GdkPixbuf2.0               2.32.2-1                      OK
girepository-GLib2.0                    1.46.0-1                      OK
girepository-Gtk2.0                     2.24.29-1                     OK
girepository-Pango1.0                   1.38.1-1                      OK
girepository-Rsvg2.0                    2.40.11-1                     OK
girepository-Secret1                    0.18.3-1                      OK
girepository-Vte0.0                     0.28.2-6                      OK
girepository-Wnck1.0                    2.30.7-2                      OK
girepository-x11                        1.46.0-1                      OK
git                                     2.8.2-1                       OK
git-gui                                 2.8.2-1                       OK
gitk                                    2.8.2-1                       OK
glade3                                  3.8.5-1                       OK
glade3-gtksourceview                    2.10.5-2                      OK
glade3-vte                              0.28.2-6                      OK
glib2.0-networking                      2.46.1-1                      OK
Empty package gmp
gmp                                     6.1.0-3p1                     OK
gnome-doc-utils                         0.20.10-2                     OK
gnome-icon-theme                        3.10.0-1                      OK
gnome-keyring                           3.18.3-1                      OK
gnome-menus                             3.13.3-3                      OK
gnome-mime-data                         2.18.0-10                     OK
gnupg                                   1.4.20-1                      OK
gnuplot                                 5.0.0-1                       OK
gq                                      1.3.4-3                       OK
graphviz                                2.38.0-7                      OK
grep                                    2.24-1                        OK
groff                                   1.22.3-1                      OK
gsettings-desktop-schemas               3.18.1-1                      OK
gtk-update-icon-cache                   3.18.9-1                      OK
gtk2.0-engines                          2.20.2-1                      OK
gtk2.0-engines-pixmap                   2.24.29-1                     OK
gtk2.0-engines-svg                      2.36.4-1                      OK
gv                                      3.7.4-1                       OK
gvfs                                    1.26.2-1                      OK
gzip                                    1.7-2                         OK
hicolor-icon-theme                      0.15-1                        OK
hostname                                3.13-1                        OK
httpd                                   2.4.20-1                      OK
imake                                   1.0.7-1                       OK
info                                    6.1-2                         OK
inputproto                              2.3.1-1                       OK
intltool                                0.51.0-1                      OK
ipc-utils                               1.0-2                         OK
kbproto                                 1.0.7-1                       OK
Empty package lapack
lapack                                  3.6.0r1730-2                  OK
less                                    481-1                         OK
lftp                                    4.6.5-1                       OK
libamd0                                 2.3.1-2                       OK
libamd1                                 2.4.4-1                       OK
libanthy-common                         9100h-2                       OK
libanthy0                               9100h-2                       OK
libapr1                                 1.5.2-2                       OK
libapr1-devel                           1.5.2-2                       OK
libaprutil1                             1.5.4-2                       OK
libaprutil1-devel                       1.5.4-2                       OK
libarchive13                            3.1.2-3                       OK
libargp                                 20110921-2                    OK
libarpack0                              3.3.0-3                       OK
Empty package libart_lgpl_2
libart_lgpl_2                           2.3.21-2                      OK
libart_lgpl_2-devel                     2.3.21-2                      OK
libart_lgpl_2_2                         2.3.21-2                      OK
libasn1_8                               1.5.3-1                       OK
libaspell15                             0.60.6.1-1                    OK
libasyncns0                             0.8-1                         OK
libatk-bridge2.0_0                      2.18.1-1                      OK
libatk1.0-devel                         2.18.0-1                      OK
libatk1.0_0                             2.18.0-1                      OK
libatomic1                              5.3.0-5                       OK
libatspi0                               2.18.3-1                      OK
libattr1                                2.4.46-1                      OK
libaudio2                               1.9.3-1                       OK
libautotrace3                           0.31.1-17                     OK
libavahi-client3                        0.6.31-2                      OK
libavahi-common3                        0.6.31-2                      OK
libavahi-glib1                          0.6.31-2                      OK
libblkid1                               2.25.2-2                      OK
libbonobo2                              2.32.1-2                      OK
libbonobo2-devel                        2.32.1-2                      OK
libbonobo2_0                            2.32.1-2                      OK
libbonoboui2                            2.24.5-2                      OK
libbonoboui2-devel                      2.24.5-2                      OK
libbonoboui2_0                          2.24.5-2                      OK
libboost-devel                          1.58.0-1                      OK
libboost1.53                            1.53.0-2                      OK
libboost_atomic1.55                     1.55.0-2                      OK
libboost_atomic1.57                     1.57.0-1                      OK
libboost_atomic1.58                     1.58.0-1                      OK
libboost_chrono1.55                     1.55.0-2                      OK
libboost_chrono1.57                     1.57.0-1                      OK
libboost_chrono1.58                     1.58.0-1                      OK
libboost_container1.57                  1.57.0-1                      OK
libboost_container1.58                  1.58.0-1                      OK
libboost_context1.55                    1.55.0-2                      OK
libboost_context1.57                    1.57.0-1                      OK
libboost_context1.58                    1.58.0-1                      OK
libboost_coroutine1.55                  1.55.0-2                      OK
libboost_coroutine1.57                  1.57.0-1                      OK
libboost_coroutine1.58                  1.58.0-1                      OK
libboost_date_time1.55                  1.55.0-2                      OK
libboost_date_time1.57                  1.57.0-1                      OK
libboost_date_time1.58                  1.58.0-1                      OK
libboost_filesystem1.55                 1.55.0-2                      OK
libboost_filesystem1.57                 1.57.0-1                      OK
libboost_filesystem1.58                 1.58.0-1                      OK
libboost_graph1.55                      1.55.0-2                      OK
libboost_graph1.57                      1.57.0-1                      OK
libboost_graph1.58                      1.58.0-1                      OK
libboost_iostreams1.55                  1.55.0-2                      OK
libboost_iostreams1.57                  1.57.0-1                      OK
libboost_iostreams1.58                  1.58.0-1                      OK
libboost_locale1.55                     1.55.0-2                      OK
libboost_locale1.57                     1.57.0-1                      OK
libboost_locale1.58                     1.58.0-1                      OK
libboost_log1.55                        1.55.0-2                      OK
libboost_log1.57                        1.57.0-1                      OK
libboost_log1.58                        1.58.0-1                      OK
libboost_math1.55                       1.55.0-2                      OK
libboost_math1.57                       1.57.0-1                      OK
libboost_math1.58                       1.58.0-1                      OK
libboost_program_options1.55            1.55.0-2                      OK
libboost_program_options1.57            1.57.0-1                      OK
libboost_program_options1.58            1.58.0-1                      OK
libboost_random1.55                     1.55.0-2                      OK
libboost_random1.57                     1.57.0-1                      OK
libboost_random1.58                     1.58.0-1                      OK
libboost_regex1.55                      1.55.0-2                      OK
libboost_regex1.57                      1.57.0-1                      OK
libboost_regex1.58                      1.58.0-1                      OK
libboost_serialization1.55              1.55.0-2                      OK
libboost_serialization1.57              1.57.0-1                      OK
libboost_serialization1.58              1.58.0-1                      OK
libboost_signals1.55                    1.55.0-2                      OK
libboost_signals1.57                    1.57.0-1                      OK
libboost_signals1.58                    1.58.0-1                      OK
libboost_system1.55                     1.55.0-2                      OK
libboost_system1.57                     1.57.0-1                      OK
libboost_system1.58                     1.58.0-1                      OK
libboost_test1.55                       1.55.0-2                      OK
libboost_test1.57                       1.57.0-1                      OK
libboost_test1.58                       1.58.0-1                      OK
libboost_thread1.55                     1.55.0-2                      OK
libboost_thread1.57                     1.57.0-1                      OK
libboost_thread1.58                     1.58.0-1                      OK
libboost_timer1.55                      1.55.0-2                      OK
libboost_timer1.57                      1.57.0-1                      OK
libboost_timer1.58                      1.58.0-1                      OK
libboost_wave1.55                       1.55.0-2                      OK
libboost_wave1.57                       1.57.0-1                      OK
libboost_wave1.58                       1.58.0-1                      OK
libbz2-devel                            1.0.6-2                       OK
libbz2_1                                1.0.6-2                       OK
libcairo-devel                          1.14.4-1                      OK
libcairo2                               1.14.4-1                      OK
libcamd0                                2.3.1-2                       OK
libcamd1                                2.4.4-1                       OK
libcanberra-devel                       0.30-1                        OK
libcanberra-gtk3_0                      0.30-1                        OK
libcanberra0                            0.30-1                        OK
libcatgets1                             1.1-2                         OK
libccolamd0                             2.8.0-2                       OK
libccolamd1                             2.9.4-1                       OK
libcdt5                                 2.38.0-7                      OK
libcgraph6                              2.38.0-7                      OK
libcharset1                             1.14-3                        OK
libcholmod0                             2.1.2-1                       OK
libcholmod1                             3.0.9-1                       OK
libcloog-isl4                           0.18.0-2                      OK
libcolamd0                              2.8.0-2                       OK
libcolamd1                              2.9.4-1                       OK
libcom_err-devel                        1.42.12-2                     OK
libcom_err2                             1.42.12-2                     OK
libcroco0.6                             0.6.9-1                       OK
libcroco0.6-devel                       0.6.9-1                       OK
libcroco0.6_3                           0.6.9-1                       OK
libcrypt-devel                          1.3-1                         OK
libcrypt0                               1.3-1                         OK
libcurl4                                7.49.0-1                      OK
libcxsparse0                            3.1.7-1                       OK
libdatrie1                              0.2.8-1                       OK
libdb-devel                             5.3.21-1                      OK
libdb5.3                                5.3.21-1                      OK
libdbus-glib_1-devel                    0.106-1                       OK
libdbus-glib_1_2                        0.106-1                       OK
libdbus1-devel                          1.10.8-1                      OK
libdbus1_3                              1.10.8-1                      OK
libdconf1                               0.24.0-1                      OK
libdialog11                             1.2-20140112-1                OK
libdialog12                             1.2-20150225-2                OK
libdialog13                             1.3-1.20160424                OK
libdmx1                                 1.1.3-1                       OK
libedit0                                20130712-1                    OK
libEGL-devel                            11.2.2-1                      OK
libEGL1                                 11.2.2-1                      OK
libEMF1                                 1.0.7-1                       OK
libenchant-devel                        1.6.0-2                       OK
libenchant1                             1.6.0-2                       OK
libepoxy0                               1.2-1                         OK
libevent2.0_5                           2.0.22-1                      OK
libexpat-devel                          2.1.1-2                       OK
libexpat1                               2.1.1-2                       OK
libfam0                                 0.1.10-15                     OK
libffi-devel                            3.2.1-2                       OK
libffi6                                 3.2.1-2                       OK
libfftw3_3                              3.3.4-3                       OK
libFLAC8                                1.3.1-1                       OK
libfltk1.3                              1.3.3-1                       OK
libfontconfig-common                    2.11.94-1                     OK
libfontconfig-devel                     2.11.94-1                     OK
libfontconfig1                          2.11.94-1                     OK
libfontenc1                             1.1.3-1                       OK
libfpx1                                 1.3.1.4-1                     OK
libfreetype-devel                       2.5.5-2                       OK
libfreetype6                            2.5.5-2                       OK
libfribidi0                             0.19.2-1                      OK
libgailutil-devel                       2.24.29-1                     OK
libgailutil18                           2.24.29-1                     OK
libgcc1                                 5.3.0-5                       OK
libgck1_0                               3.18.0-1                      OK
libgconf2-devel                         3.2.6-2                       OK
libgconf2_4                             3.2.6-2                       OK
libgcr-base3_1                          3.18.0-1                      OK
libgcr-ui3-common                       3.18.0-1                      OK
libgcr-ui3_1                            3.18.0-1                      OK
Empty package libgcr3-common
libgcr3-common                          3.18.0-1                      OK
Empty package libgcr3_1
libgcr3_1                               3.18.0-1                      OK
libgcrypt11                             1.5.3-2                       OK
libgcrypt20                             1.6.4-1                       OK
libgd2                                  2.0.36RC1-2                   OK
libgd3                                  2.1.1-1                       OK
libgdbm-devel                           1.11-1                        OK
libgdbm4                                1.11-1                        OK
libgdk_pixbuf2.0-devel                  2.32.2-1                      OK
libgdk_pixbuf2.0_0                      2.32.2-1                      OK
libgfortran3                            5.3.0-5                       OK
libggi2                                 2.2.2-4                       OK
libggiwmh0                              0.3.2-4                       OK
libgif4                                 4.1.6-12                      OK
libgii1                                 1.0.2-4                       OK
libGL-devel                             11.2.2-1                      OK
libGL1                                  11.2.2-1                      OK
libgl2ps1                               1.3.9-1                       OK
libglade2.0-devel                       2.6.4-2                       OK
libglade2.0_0                           2.6.4-2                       OK
libglapi0                               11.2.2-1                      OK
libglib2.0-devel                        2.46.2-3                      OK
libglib2.0_0                            2.46.2-3                      OK
libglpk36                               4.57-1                        OK
libglpk40                               4.60-1                        OK
libGLU1                                 9.0.0-1                       OK
libgmp-devel                            6.1.0-3p1                     OK
libgmp10                                6.1.0-3p1                     OK
libgmpxx4                               6.1.0-3p1                     OK
libgnome-keyring-devel                  3.12.0-2                      OK
libgnome-keyring0                       3.12.0-2                      OK
libgnome-menu3_0                        3.13.3-3                      OK
libgnome2-devel                         2.32.1-3                      OK
libgnome2_0                             2.32.1-3                      OK
libgnomecanvas2-devel                   2.30.3-2                      OK
libgnomecanvas2_0                       2.30.3-2                      OK
libgnomeui2-devel                       2.24.5-2                      OK
libgnomeui2_0                           2.24.5-2                      OK
libgnomevfs2-devel                      2.24.4-6                      OK
libgnomevfs2_0                          2.24.4-6                      OK
libgnutls28                             3.3.17-1                      OK
libgomp1                                5.3.0-5                       OK
libgpg-error0                           1.19-1                        OK
libgpgme11                              1.4.4-1                       OK
libGraphicsMagick++11                   1.3.21-3                      OK
libGraphicsMagick++12                   1.3.23-1                      OK
libGraphicsMagick3                      1.3.23-1                      OK
libgraphite2-devel                      1.3.6-1                       OK
libgraphite2_3                          1.3.6-1                       OK
libgs9                                  9.15-2                        OK
libgsf                                  1.14.36-1                     OK
libgsf-common                           1.14.36-1                     OK
libgsf1_114                             1.14.36-1                     OK
libgsm1                                 1.0.13-3                      OK
libgssapi3                              1.5.3-1                       OK
libgssapi_krb5_2                        1.14.1-1                      OK
libgssrpc4                              1.14.1-1                      OK
libgtk2.0-devel                         2.24.29-1                     OK
libgtk2.0_0                             2.24.29-1                     OK
libgtk3_0                               3.18.9-1                      OK
libgtksourceview2.0-devel               2.10.5-2                      OK
libgtksourceview2.0_0                   2.10.5-2                      OK
libgtkspell-devel                       2.0.16-1                      OK
libgtkspell0                            2.0.16-1                      OK
libgts0.7_5                             20121130-1                    OK
libguile17                              1.8.8-1                       OK
libgvc6                                 2.38.0-7                      OK
libgvpr2                                2.38.0-7                      OK
libharfbuzz-devel                       1.0.6-1                       OK
libharfbuzz-icu0                        1.0.6-1                       OK
libharfbuzz0                            1.0.6-1                       OK
libhdf5_10                              1.8.17-1                      OK
libheimbase1                            1.5.3-1                       OK
libheimntlm0                            1.5.3-1                       OK
libhogweed2                             2.7.1-1                       OK
libhunspell1.3_0                        1.3.3-1                       OK
libhx509_5                              1.5.3-1                       OK
libICE-devel                            1.0.9-1                       OK
libICE6                                 1.0.9-1                       OK
libiconv                                1.14-3                        OK
libiconv-devel                          1.14-3                        OK
libiconv2                               1.14-3                        OK
libicu-devel                            57.1-1                        OK
libicu51                                51.2-1                        OK
libicu54                                54.1-1                        OK
libicu55                                55.1-1                        OK
libicu56                                56.1-1                        OK
libicu57                                57.1-1                        OK
libIDL2-devel                           0.8.14-2                      OK
libIDL2_0                               0.8.14-2                      OK
libidn11                                1.29-1                        OK
libintl-devel                           0.19.7-1                      OK
libintl8                                0.19.7-1                      OK
libiodbc-devel                          3.52.8-2                      OK
libiodbc2                               3.52.8-2                      OK
libisl10                                0.11.1-2                      OK
libisl13                                0.14.1-1                      OK
libjasper1                              1.900.1-15                    OK
libjbig2                                2.0-14                        OK
libjpeg8                                1.4.2-1                       OK
libjson-c-common                        0.12-1                        OK
libjson-c2                              0.12-1                        OK
libjson-glib1.0_0                       1.0.4-1                       OK
libk5crypto3                            1.14.1-1                      OK
libkadm5clnt_mit10                      1.14.1-1                      OK
libkadm5clnt_mit9                       1.13.2-4                      OK
libkadm5srv_mit10                       1.14.1-1                      OK
libkadm5srv_mit9                        1.13.2-4                      OK
libkafs0                                1.5.3-1                       OK
libkdb5_8                               1.14.1-1                      OK
libkpathsea6                            20150521-4                    OK
libkrad0                                1.14.1-1                      OK
libkrb5-devel                           1.14.1-1                      OK
libkrb5_26                              1.5.3-1                       OK
libkrb5_3                               1.14.1-1                      OK
libkrb5support0                         1.14.1-1                      OK
liblapack0                              3.6.0r1730-2                  OK
libLASi1                                1.1.1-2                       OK
liblcms1                                1.19-5                        OK
liblcms2_2                              2.6-1                         OK
libllvm3.4                              3.4.2-5                       OK
libllvm3.5                              3.5.2-2                       OK
libllvm3.7                              3.7.1-1                       OK
libltdl7                                2.4.6-3                       OK
liblzma-devel                           5.2.2-1                       OK
liblzma5                                5.2.2-1                       OK
liblzo2_2                               2.08-1                        OK
libm17n0                                1.7.0-1                       OK
libMagickC++6_5                         6.9.0.0-4                     OK
libMagickCore5                          6.7.6.3-4                     OK
Empty package libMagickCore6
libMagickCore6                          6.9.0.0-4                     OK
libMagickCore6_2                        6.9.3.10-1                    OK
libMagickWand6_2                        6.9.3.10-1                    OK
libmcpp0                                2.7.2-2                       OK
libmetalink3                            0.1.2-1                       OK
libmetis0                               5.1.0-1                       OK
libming1                                0.4.7-1                       OK
libmng1                                 1.0.10-1                      OK
libmpc3                                 1.0.3-1                       OK
libmpfr4                                3.1.4-1                       OK
libmysqlclient18                        5.5.45-1                      OK
libncursesw10                           6.0-5.20160423                OK
libneon27                               0.30.1-1                      OK
libnettle4                              2.7.1-1                       OK
libnghttp2_14                           1.7.1-1                       OK
libogg0                                 1.3.1-1                       OK
libopenblas                             0.2.16-1                      OK
libopenjp2_7                            2.1.0-1                       OK
libopenjpeg1                            1.5.2-3                       OK
libopenldap2_4_2                        2.4.42-1                      OK
libopenssl100                           1.0.2h-1                      OK
libOpenVG1                              10.3.7-1                      OK
libORBit2-devel                         2.14.19-2                     OK
libORBit2_0                             2.14.19-2                     OK
libOSMesa8                              11.2.2-1                      OK
libotf0                                 0.9.13-1                      OK
libp11-kit0                             0.22.1-1                      OK
libpango1.0-devel                       1.38.1-1                      OK
libpango1.0_0                           1.38.1-1                      OK
libpangox1.0-devel                      0.0.2-1                       OK
libpangox1.0_0                          0.0.2-1                       OK
libpaper-common                         1.1.24-2                      OK
libpaper-devel                          1.1.24-2                      OK
libpaper1                               1.1.24-2                      OK
libpathplan4                            2.38.0-7                      OK
libpcre-devel                           8.38-3                        OK
libpcre1                                8.38-3                        OK
libpcre16_0                             8.38-3                        OK
libpcre32_0                             8.38-3                        OK
libpcrecpp0                             8.38-3                        OK
libpcreposix0                           8.38-3                        OK
libpipeline1                            1.4.0-1                       OK
libpixman1-devel                        0.32.8-1                      OK
libpixman1_0                            0.32.8-1                      OK
libplotter2                             2.6-5                         OK
libpng-devel                            1.6.20-1                      OK
Empty package libpng-doc
libpng-doc                              1.6.20-1                      OK
libpng15                                1.5.22-1                      OK
libpng16                                1.6.20-1                      OK
libpng16-devel                          1.6.20-1                      OK
libpoppler-cpp-devel                    0.36.0-3                      OK
libpoppler-cpp0                         0.36.0-3                      OK
libpoppler-devel                        0.36.0-3                      OK
libpoppler-glib8                        0.36.0-3                      OK
libpoppler28                            0.20.5-3                      OK
libpoppler37                            0.22.5-2                      OK
libpoppler44                            0.24.5-1                      OK
libpoppler46                            0.26.5-3                      OK
libpoppler49                            0.30.0-2                      OK
libpoppler55                            0.36.0-3                      OK
Empty package libpopt-devel
libpopt-devel                           1.16-1                        OK
libpopt0                                1.16-1                        OK
libpq5                                  9.5.2-1                       OK
libprocps-ng4                           3.3.10-1                      OK
libproxy1                               0.4.11-5                      OK
libpsl5                                 0.13.0-1                      OK
libpstoedit0                            3.70-1                        OK
libptexenc1                             20150521-4                    OK
libpulse0                               7.1-1                         OK
libqhull_6                              2012.1-2                      OK
libqhull_7                              2015.2-1                      OK
libqrupdate0                            1.1.2-2                       OK
libqscintilla2-common                   2.9-1                         OK
libqscintilla2_11                       2.8.4-4                       OK
libqscintilla2_12                       2.9-1                         OK
libQtCore4                              4.8.7-1                       OK
libQtGui4                               4.8.7-1                       OK
libQtNetwork4                           4.8.7-1                       OK
libQtOpenGL4                            4.8.7-1                       OK
libquadmath0                            5.3.0-5                       OK
librarian0                              0.8.1-12                      OK
libreadline7                            6.3.8-1                       OK
librest0.7_0                            0.7.93-1                      OK
libroken18                              1.5.3-1                       OK
librsvg2-devel                          2.40.11-1                     OK
librsvg2_2                              2.40.11-1                     OK
libsasl2-devel                          2.1.26-9                      OK
libsasl2_3                              2.1.26-9                      OK
libsecret1-devel                        0.18.3-1                      OK
libsecret1_0                            0.18.3-1                      OK
libserf1-devel                          1.3.8-1                       OK
libserf1_0                              1.3.8-1                       OK
libsigsegv2                             2.10-2                        OK
libSM-devel                             1.2.2-1                       OK
libSM6                                  1.2.2-1                       OK
libsmartcols1                           2.25.2-2                      OK
libsndfile1                             1.0.25-4                      OK
libsoup-gnome2.4_1                      2.52.2-1                      OK
libsoup2.4_1                            2.52.2-1                      OK
libsqlite3-devel                        3.12.2-1                      OK
libsqlite3_0                            3.12.2-1                      OK
libssh2_1                               1.7.0-1                       OK
libssp0                                 5.3.0-5                       OK
libstartup-notification1-devel          0.12-2                        OK
libstartup-notification1_0              0.12-2                        OK
libstdc++6                              5.3.0-5                       OK
libsuitesparseconfig0                   4.2.1-1                       OK
libsuitesparseconfig1                   4.5.1-1                       OK
libsynctex1                             20150521-4                    OK
libtasn1_6                              4.7-1                         OK
libtdb1                                 1.2.11-2                      OK
libtexlua52_5                           20150521-4                    OK
libtexluajit2                           20150521-4                    OK
libthai0                                0.1.21-1                      OK
libtiff5                                3.9.7-4                       OK
libtiff6                                4.0.6-1                       OK
libtirpc-common                         0.3.2-2                       OK
libtirpc1                               0.3.2-2                       OK
libtool                                 2.4.6-3                       OK
libtxc_dxtn                             1.0-1.20151227gitf6ec862      OK
libumfpack0                             5.6.2-1                       OK
libumfpack1                             5.7.4-1                       OK
libunistring0                           0.9.3-2                       OK
libunistring2                           0.9.6-1                       OK
libusb0                                 1.2.6.0-2                     OK
libuuid-devel                           2.25.2-2                      OK
libuuid1                                2.25.2-2                      OK
libverto1                               0.2.6-1                       OK
libvoikko1                              3.7.1-1                       OK
libvorbis                               1.3.5-1                       OK
libvorbis0                              1.3.5-1                       OK
libvorbisenc2                           1.3.5-1                       OK
libvorbisfile3                          1.3.5-1                       OK
libvpx1                                 1.3.0-2                       OK
libvte-devel                            0.28.2-6                      OK
libvte9                                 0.28.2-6                      OK
libvtv0                                 5.3.0-5                       OK
libwebp5                                0.4.3-1                       OK
libwebpmux1                             0.4.3-1                       OK
libwind0                                1.5.3-1                       OK
libwmf027                               0.2.8.4-15                    OK
Empty package libwnck
libwnck                                 2.30.7-2                      OK
libwnck1-devel                          2.30.7-2                      OK
libwnck1_22                             2.30.7-2                      OK
libwrap0                                7.6-22                        OK
libX11-devel                            1.6.3-1                       OK
libX11-xcb-devel                        1.6.3-1                       OK
libX11-xcb1                             1.6.3-1                       OK
libX11_6                                1.6.3-1                       OK
libXau-devel                            1.0.8-1                       OK
libXau6                                 1.0.8-1                       OK
libXaw3d8                               1.6.2-2                       OK
libXaw7                                 1.0.13-1                      OK
libxcb-composite0                       1.11.1-1                      OK
libxcb-devel                            1.11.1-1                      OK
libxcb-ewmh2                            0.4.1-1                       OK
libxcb-glx-devel                        1.11.1-1                      OK
libxcb-glx0                             1.11.1-1                      OK
libxcb-icccm4                           0.4.1-1                       OK
libxcb-image0                           0.3.9-1                       OK
libxcb-render-devel                     1.11.1-1                      OK
libxcb-render0                          1.11.1-1                      OK
libxcb-shape0                           1.11.1-1                      OK
libxcb-shm-devel                        1.11.1-1                      OK
libxcb-shm0                             1.11.1-1                      OK
libxcb-util1                            0.3.9-1                       OK
libxcb1                                 1.11.1-1                      OK
libXcomposite-devel                     0.4.3-1                       OK
libXcomposite1                          0.4.3-1                       OK
libXcursor-devel                        1.1.14-1                      OK
libXcursor1                             1.1.14-1                      OK
libXdamage-devel                        1.1.4-1                       OK
libXdamage1                             1.1.4-1                       OK
libXdmcp-devel                          1.1.2-1                       OK
libXdmcp6                               1.1.2-1                       OK
libXext-devel                           1.3.3-1                       OK
libXext6                                1.3.3-1                       OK
libXfixes-devel                         5.0.1-1                       OK
libXfixes3                              5.0.1-1                       OK
libXfont1                               1.5.1-1                       OK
libXft-devel                            2.3.2-1                       OK
libXft2                                 2.3.2-1                       OK
libXi-devel                             1.7.6-1                       OK
libXi6                                  1.7.6-1                       OK
libXinerama-devel                       1.1.3-1                       OK
libXinerama1                            1.1.3-1                       OK
libxkbfile1                             1.0.9-1                       OK
libXm-devel                             2.3.4-3                       OK
libXm4                                  2.3.4-3                       OK
libxml2                                 2.9.3-1                       OK
libxml2-devel                           2.9.3-1                       OK
libXmu-devel                            1.1.2-1                       OK
libXmu6                                 1.1.2-1                       OK
libXmuu1                                1.1.2-1                       OK
libXpm-devel                            3.5.11-1                      OK
libXpm-noX_4                            3.5.10-1                      OK
libXpm4                                 3.5.11-1                      OK
libXrandr-devel                         1.5.0-1                       OK
libXrandr2                              1.5.0-1                       OK
libXrender-devel                        0.9.9-1                       OK
libXrender1                             0.9.9-1                       OK
libXRes-devel                           1.0.7-1                       OK
libXRes1                                1.0.7-1                       OK
libxslt                                 1.1.28-2                      OK
libXss1                                 1.2.2-1                       OK
libXt-devel                             1.1.5-1                       OK
libXt6                                  1.1.5-1                       OK
libXtst6                                1.2.2-1                       OK
libyaml0_2                              0.1.6-2                       OK
libzip2                                 0.11.2-2                      OK
libzzip0.13                             0.13.62-1                     OK
lndir                                   1.0.3-1                       OK
login                                   1.11-1                        OK
lua                                     5.2.4-1                       OK
lua5.1                                  5.1.5-3                       OK
luit                                    20130217-1                    OK
lynx                                    2.8.7-2                       OK
m17n-db                                 1.7.0-1                       OK
m4                                      1.4.17-2                      OK
make                                    4.1-1                         OK
makedepend                              1.0.5-1                       OK
Empty package man
man                                     2.7.4-1                       OK
man-db                                  2.7.4-1                       OK
man-pages-posix                         2013-a-1                      OK
maxima                                  5.38.0-1                      OK
maxima-xmaxima                          5.38.0-1                      OK
mcpp                                    2.7.2-2                       OK
mercurial                               3.7.3-1                       OK
mingw-binutils                          2.23.1-1                      OK
mingw-gcc-core                          4.7.3-1                       OK
mingw-gcc-g++                           4.7.3-1                       OK
mingw-pthreads                          20110507-2                    OK
mingw-runtime                           4.0-1                         OK
mingw-w32api                            4.0-1                         OK
mingw64-i686-binutils                   2.25.0.1.23f238d-1            OK
mingw64-i686-gcc-core                   4.9.2-2                       OK
mingw64-i686-gcc-fortran                4.9.2-2                       OK
mingw64-i686-gcc-g++                    4.9.2-2                       OK
mingw64-i686-headers                    4.0.6-1                       OK
mingw64-i686-runtime                    4.0.6-1                       OK
mingw64-i686-windows-default-manifest   6.4-1                         OK
mingw64-i686-winpthreads                4.0.6-1                       OK
mingw64-x86_64-windows-default-manifest 6.4-1                         OK
mintty                                  2.3.7-0                       OK
mkfontdir                               1.0.7-1                       OK
mkfontscale                             1.1.1-1                       OK
mm-common                               0.9.8-1                       OK
motif                                   2.3.4-3                       OK
mysql                                   5.5.45-1                      OK
mysqld                                  5.5.45-1                      OK
ncompress                               4.2.4.4-3                     OK
ncurses                                 6.0-5.20160423                OK
notification-daemon                     3.18.2-1                      OK
octave                                  4.0.1-1                       OK
octave-control                          3.0.0-1                       OK
octave-data-smoothing                   1.3.0-2                       OK
octave-general                          2.0.0-1                       OK
octave-geometry                         2.1.1-1                       OK
octave-integration                      1.0.7r28-2                    OK
octave-linear-algebra                   2.2.2-1                       OK
octave-mechanics                        1.3.1r89-2                    OK
octave-miscellaneous                    1.2.1-2                       OK
octave-msh                              1.0.10-2                      OK
octave-nurbs                            1.3.10r12827-1                OK
octave-odepkg                           0.8.5-1                       OK
octave-optim                            1.5.1-1                       OK
octave-optiminterp                      0.3.4-2                       OK
octave-signal                           1.3.2-1                       OK
octave-splines                          1.2.9-1                       OK
octave-strings                          1.2.0-1                       OK
octave-struct                           1.0.13-1                      OK
octave-tsa                              4.4.1-1                       OK
openldap-devel                          2.4.42-1                      OK
openssh                                 7.2p2-1                       OK
openssl                                 1.0.2h-1                      OK
openssl-devel                           1.0.2h-1                      OK
ORBit2                                  2.14.19-2                     OK
p11-kit                                 0.22.1-1                      OK
p11-kit-trust                           0.22.1-1                      OK
patch                                   2.7.4-1                       OK
patchutils                              0.3.4-1                       OK
perl                                    5.22.2-1                      OK
perl-Authen-SASL                        2.16-2                        OK
perl-Authen-SASL-XS                     1.00-1                        OK
perl-autovivification                   0.16-1                        OK
perl-Business-ISBN                      2.010-1                       OK
perl-Business-ISBN-Data                 20140910.003-1                OK
perl-Business-ISMN                      1.13-2                        OK
perl-Business-ISSN                      0.91-2                        OK
perl-Carp                               1.3301-2                      OK
perl-CGI                                4.21-1                        OK
perl-Class-Accessor                     0.34-1                        OK
perl-Data-Compare                       1.25-2                        OK
perl-Data-Diver                         1.0101-3                      OK
perl-Data-Dump                          1.23-1                        OK
perl-Data-Uniqid                        0.12-1                        OK
perl-Date-Simple                        3.03-2                        OK
perl-DBD-mysql                          4.033-1                       OK
perl-DBI                                1.636-1                       OK
perl-Digest-HMAC                        1.03-5                        OK
perl-Encode-Locale                      1.05-1                        OK
perl-Error                              0.17024-1                     OK
perl-Exporter-Tiny                      0.042-2                       OK
perl-File-Find-Rule                     0.34-1                        OK
perl-File-HomeDir                       1.00-3                        OK
perl-File-Listing                       6.04-5                        OK
perl-File-Slurp                         9999.19-5                     OK
perl-File-Slurp-Tiny                    0.004-1                       OK
Empty package perl-File-Slurp-Unicode
perl-File-Slurp-Unicode                 0.7.1-2                       OK
perl-File-Which                         1.21-1                        OK
perl-HTML-Parser                        3.72-1                        OK
perl-HTML-Tagset                        3.20-5                        OK
perl-HTTP-Cookies                       6.01-5                        OK
perl-HTTP-Daemon                        6.01-5                        OK
perl-HTTP-Date                          6.02-5                        OK
perl-HTTP-Message                       6.11-1                        OK
perl-HTTP-Negotiate                     6.01-5                        OK
perl-IO-HTML                            1.001-2                       OK
perl-IO-Socket-IP                       0.37-2                        OK
perl-IO-Socket-SSL                      2.027-1                       OK
perl-IO-String                          1.08-5                        OK
perl-IPC-Cmd                            0.94-1                        OK
perl-IPC-Run3                           0.048-2                       OK
perl-libwww-perl                        6.15-1                        OK
perl-List-AllUtils                      0.09-2                        OK
perl-List-MoreUtils                     0.413-1                       OK
perl-Log-Log4perl                       1.47-1                        OK
Empty package perl-LWP
perl-LWP                                6.13-1                        OK
perl-LWP-MediaTypes                     6.02-5                        OK
perl-LWP-Protocol-https                 6.06-2                        OK
perl-MailTools                          2.14-1                        OK
perl-MIME-Charset                       1.012-2                       OK
perl-MIME-tools                         5.506-1                       OK
perl-Mojolicious                        6.60-1                        OK
perl-Mozilla-CA                         20160104-1                    OK
perl-Net-HTTP                           6.09-1                        OK
perl-Net-SMTP-SSL                       1.03-1                        OK
perl-Net-SSLeay                         1.74-1                        OK
perl-Number-Compare                     0.03-5                        OK
perl-Params-Util                        1.07-5                        OK
perl-Pod-Simple                         3.32-1                        OK
perl-Readonly                           2.01-1                        OK
perl-Regexp-Common                      2016020301-1                  OK
perl-Scalar-List-Utils                  1.45-1                        OK
perl-Socket                             2.021-1                       OK
perl-TermReadKey                        2.33-1                        OK
perl-Text-BibTeX                        0.72-1                        OK
perl-Text-Glob                          0.09-5                        OK
perl-Text-Roman                         3.5-1                         OK
perl-Tie-Cycle                          1.221-1                       OK
perl-TimeDate                           2.30-2                        OK
perl-Tk                                 804.033-1                     OK
perl-Tk-Pod                             0.9942-1                      OK
perl-Unicode-Collate                    1.14-1                        OK
perl-Unicode-LineBreak                  2016.003-1                    OK
perl-Unicode-Normalize                  1.25-1                        OK
perl-URI                                1.71-1                        OK
perl-WWW-RobotRules                     6.02-5                        OK
perl-XML-LibXML                         2.0124-1                      OK
perl-XML-LibXML-Simple                  0.97-1                        OK
perl-XML-LibXSLT                        1.94-2                        OK
perl-XML-NamespaceSupport               1.11-5                        OK
perl-XML-Parser                         2.44-2                        OK
perl-XML-SAX                            0.99-5                        OK
perl-XML-SAX-Base                       1.08-5                        OK
perl-XML-Writer                         0.625-1                       OK
perl_autorebase                         5.22.2-1                      OK
perl_base                               5.22.2-1                      OK
perl_manpages                           5.22.2-1                      OK
pkg-config                              0.29-1                        OK
poppler                                 0.36.0-3                      OK
poppler-data                            0.4.6-1                       OK
popt                                    1.16-1                        OK
popt-devel                              1.16-1                        OK
preview-latex                           11.89-1                       OK
Empty package procps
procps                                  3.3.10-1                      OK
procps-ng                               3.3.10-1                      OK
python                                  2.7.10-1                      OK
python-beautifulsoup                    3.2.1-1                       OK
python-cairo                            1.10.0-3                      OK
python-cffi                             0.9.2-1                       OK
python-chardet                          2.2.1-1                       OK
python-docutils                         0.12-1                        OK
python-gobject                          2.28.6-5                      OK
python-gtk2.0                           2.24.0-3                      OK
python-imaging                          2.8.2-2                       OK
python-jinja2                           2.7.3-1                       OK
python-libxml2                          2.9.3-1                       OK
python-libxslt                          1.1.28-2                      OK
python-lxml                             3.4.4-1                       OK
python-markupsafe                       0.23-1                        OK
python-numpy                            1.9.2-1                       OK
python-ply                              3.6-1                         OK
python-pycparser                        2.12-1                        OK
python-pygments                         2.0.2-1                       OK
python-pyrex                            0.9.9-3                       OK
python-setuptools                       15.2-1                        OK
python-simplejson                       3.6.5-1                       OK
python-sphinx                           1.2.3-1                       OK
python-tkinter                          2.7.10-1                      OK
python-vte                              0.28.2-6                      OK
python-xdg                              0.25-3                        OK
python3                                 3.4.3-1                       OK
python3-numpy                           1.9.2-1                       OK
python3-setuptools                      15.2-1                        OK
python3-tkinter                         3.4.3-1                       OK
R                                       3.2.4-1                       OK
R_autorebase                            001001-1                      OK
randrproto                              1.5.0-1                       OK
rarian                                  0.8.1-12                      OK
rebase                                  4.4.2-1                       OK
renderproto                             0.11.1-1                      OK
rgb                                     1.0.5-1                       OK
rsync                                   3.1.2-1                       OK
ruby                                    2.2.4-1                       OK
ruby-io-console                         0.4.2-2                       OK
ruby-json                               1.8.2-1                       OK
ruby-minitest4                          4.7.5-1                       OK
ruby-psych                              2.0.13-1                      OK
ruby-rake                               10.4.2-1                      OK
ruby-rdoc                               4.2.0-1                       OK
rubygems                                2.4.8-1                       OK
run                                     1.3.4-2                       OK
rxvt-unicode                            9.22-1                        OK
sed                                     4.2.2-3                       OK
setxkbmap                               1.3.1-1                       OK
sgml-common                             0.6.3-3                       OK
shared-mime-info                        1.6-3                         OK
sound-theme-freedesktop                 0.7-1                         OK
splitpatch                              0.0+20131223+gitb13d810-1     OK
subversion                              1.9.4-1                       OK
subversion-apache2                      1.8.13-1                      OK
subversion-devel                        1.9.4-1                       OK
subversion-gnome                        1.9.4-1                       OK
subversion-perl                         1.9.4-1                       OK
subversion-python                       1.9.4-1                       OK
subversion-ruby                         1.9.4-1                       OK
subversion-tools                        1.9.4-1                       OK
suomi-malaga                            1.18-1                        OK
t1lib-devel                             5.1.2-1                       OK
t1lib5                                  5.1.2-1                       OK
tar                                     1.28-1                        OK
tcl                                     8.5.18-1                      OK
tcl-tix                                 8.4.3-2                       OK
tcl-tk                                  8.5.18-1                      OK
tcsh                                    6.19.00-2                     OK
terminfo                                6.0-5.20160423                OK
terminfo-extra                          6.0-5.20160423                OK
texi2html                               1.82-11                       OK
texinfo                                 6.1-2                         OK
texlive                                 20150521-4                    OK
texlive-collection-basic                20160404-1                    OK
texlive-collection-bibtexextra          20160404-1                    OK
texlive-collection-binextra             20160404-1                    OK
texlive-collection-fontsextra           20160404-1                    OK
texlive-collection-fontsrecommended     20160404-1                    OK
texlive-collection-genericrecommended   20160404-1                    OK
texlive-collection-langgerman           20160404-1                    OK
texlive-collection-latex                20160404-1                    OK
texlive-collection-latexextra           20160404-1                    OK
texlive-collection-latexrecommended     20160404-1                    OK
texlive-collection-pictures             20160404-1                    OK
texlive-collection-pstricks             20160404-1                    OK
texlive-collection-pstricks-doc         20160404-1                    OK
twm                                     1.0.9-1                       OK
tzcode                                  2016d-1                       OK
tzdata                                  2016d-1                       OK
unzip                                   6.0-15                        OK
util-linux                              2.25.2-2                      OK
vala-libsecret1                         0.18.3-1                      OK
vim-minimal                             7.4.1816-1                    OK
vte                                     0.28.2-6                      OK
w32api-headers                          4.0.4-1                       OK
w32api-runtime                          4.0.4-1                       OK
wget                                    1.17.1-2                      OK
which                                   2.20-2                        OK
windows-default-manifest                6.4-1                         OK
xauth                                   1.0.9-1                       OK
xbitmaps                                1.1.1-1                       OK
xcursor-themes                          1.0.4-1                       OK
xdg-user-dirs                           0.15-1                        OK
xdpyinfo                                1.3.2-1                       OK
xextproto                               7.3.0-1                       OK
xf86-video-dummy                        0.3.7-4                       OK
xf86-video-nested                       0.1.0-7                       OK
xineramaproto                           1.2.1-1                       OK
xinit                                   1.3.4-11                      OK
xkbcomp                                 1.3.1-1                       OK
xkeyboard-config                        2.17-1                        OK
xkill                                   1.0.4-1                       OK
xml2po                                  0.20.10-2                     OK
xmodmap                                 1.0.9-1                       OK
xorg-cf-files                           1.0.6-1                       OK
xorg-server                             1.18.2-1                      OK
xorg-server-common                      1.18.2-1                      OK
Missing file: /etc/X11/fontpath.d/xorg-x11-fonts-75dpi:unscaled:pri=20 from package xorg-x11-fonts-dpi75
xorg-x11-fonts-dpi75                    7.5-2                         Incomplete
Missing file: /etc/X11/fontpath.d/xorg-x11-fonts-misc:unscaled:pri=10 from package xorg-x11-fonts-misc
xorg-x11-fonts-misc                     7.5-2                         Incomplete
xpdf                                    3.03-4                        OK
xproto                                  7.0.28-1                      OK
xrdb                                    1.1.0-1                       OK
xterm                                   324-1                         OK
xwin-xdg-menu                           20150708-1                    OK
xwinclip                                1.18.2-1                      OK
xwininfo                                1.1.3-1                       OK
xz                                      5.2.2-1                       OK
yelp-xsl                                3.18.1-1                      OK
zip                                     3.0-12                        OK
zlib-devel                              1.2.8-3                       OK
zlib0                                   1.2.8-3                       OK
Use -h to see help about each section

[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

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

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

* Re: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)
  2016-05-26 12:32 emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb) Tobias Zawada
@ 2016-05-26 15:48 ` William M. (Mike) Miller
  2016-05-26 17:48 ` Ken Brown
  1 sibling, 0 replies; 26+ messages in thread
From: William M. (Mike) Miller @ 2016-05-26 15:48 UTC (permalink / raw)
  To: cygwin

On Thu, May 26, 2016 at 5:30 AM, Tobias Zawada <i_inbox@tn-home.de> wrote:
> Hello,
> when debugging c-programs (the special program does not matter) with gud/gdb the
> prompt "(gdb)"
> is missing after the execution of the "start" command. This also happens with
> other commands such as "next". Also variable values and outputs are not
> correctly updated.
> I do not have this problem under linux.
>
> There was already a similar problem with the update of the gdb-interface:
> https://www.cygwin.com/ml/cygwin/2015-06/msg00277.html
> That thread has a dead end.

As the initiator of that thread, thank you very much for bringing up
the issue again and for all the investigative work. Since my initial
report did not result in any fixes, I have given up on gud and am
using cgdb, which is inferior but works well enough, but it would be
very welcome to have a fully-working gud again.

Just one update on that original report: item #3 has been fixed by
recent versions of gdb and is no longer a problem.

-- 
William M. (Mike) Miller | Edison Design Group
william.m.miller@gmail.com

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

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

* Re: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)
  2016-05-26 12:32 emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb) Tobias Zawada
  2016-05-26 15:48 ` William M. (Mike) Miller
@ 2016-05-26 17:48 ` Ken Brown
  2016-05-26 18:00   ` Tobias Zawada
  2016-05-31  1:47   ` gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)] Ken Brown
  1 sibling, 2 replies; 26+ messages in thread
From: Ken Brown @ 2016-05-26 17:48 UTC (permalink / raw)
  To: cygwin

On 5/26/2016 5:30 AM, Tobias Zawada wrote:
> Hello,
> when debugging c-programs (the special program does not matter) with gud/gdb the
> prompt "(gdb)"
> is missing after the execution of the "start" command. This also happens with
> other commands such as "next". Also variable values and outputs are not
> correctly updated.
> I do not have this problem under linux.

This looks like a bug I reported several years ago; it actually has 
nothing to do with emacs:

   https://www.cygwin.com/ml/cygwin/2011-10/msg00445.html

It was fixed but then reappeared some months later:

   https://www.cygwin.com/ml/cygwin/2012-05/msg00049.html

It was fixed again but apparently is back.  The test case from the 
original report still exhibits the problem.

Ken

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

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

* Re: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)
  2016-05-26 17:48 ` Ken Brown
@ 2016-05-26 18:00   ` Tobias Zawada
  2016-05-26 18:01     ` Ken Brown
  2016-05-31  1:47   ` gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)] Ken Brown
  1 sibling, 1 reply; 26+ messages in thread
From: Tobias Zawada @ 2016-05-26 18:00 UTC (permalink / raw)
  To: cygwin

Thanks, Ken for the following info:

> This looks like a bug I reported several years ago; it actually has 
> nothing to do with emacs:
> 
>  https://www.cygwin.com/ml/cygwin/2011-10/msg00445.html
> 
> It was fixed but then reappeared some months later:
> 
>  https://www.cygwin.com/ml/cygwin/2012-05/msg00049.html
> 
> It was fixed again but apparently is back. The test case from the 
> original report still exhibits the problem.

I had a look at the elisp-function gdb-send.

The command process-send-string is used there for sending commands to gdb.

Is it right that the problem manifests itself already there?

The doc of process-send-string says that this command may send the string
contents as separate bunches of data.

If the output is already incomplete because of the partitioned input through
process-send-string I see no way for a cygwin-specific workaround and we must
wait for a fix of gdb.

Do you know where I should report the bug?

Best regards,
Tobias

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

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

* Re: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)
  2016-05-26 18:00   ` Tobias Zawada
@ 2016-05-26 18:01     ` Ken Brown
  0 siblings, 0 replies; 26+ messages in thread
From: Ken Brown @ 2016-05-26 18:01 UTC (permalink / raw)
  To: cygwin

On 5/26/2016 10:55 AM, Tobias Zawada wrote:
> Thanks, Ken for the following info:
>
>> This looks like a bug I reported several years ago; it actually has
>> nothing to do with emacs:
>>
>>  https://www.cygwin.com/ml/cygwin/2011-10/msg00445.html
>>
>> It was fixed but then reappeared some months later:
>>
>>  https://www.cygwin.com/ml/cygwin/2012-05/msg00049.html
>>
>> It was fixed again but apparently is back. The test case from the
>> original report still exhibits the problem.
>
> I had a look at the elisp-function gdb-send.
>
> The command process-send-string is used there for sending commands to gdb.
>
> Is it right that the problem manifests itself already there?
>
> The doc of process-send-string says that this command may send the string
> contents as separate bunches of data.
>
> If the output is already incomplete because of the partitioned input through
> process-send-string I see no way for a cygwin-specific workaround and we must
> wait for a fix of gdb.

I already wrote a test case (which was improved by cgf) in my original 
bug report.  As you can see from reading that old thread, the problem 
*is* Cygwin specific and is provoked without partitioned input.

> Do you know where I should report the bug?

This email thread is the right place to report the bug.

Ken

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

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

* gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-05-26 17:48 ` Ken Brown
  2016-05-26 18:00   ` Tobias Zawada
@ 2016-05-31  1:47   ` Ken Brown
  2016-05-31  9:35     ` Ken Brown
  1 sibling, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-05-31  1:47 UTC (permalink / raw)
  To: cygwin

On 5/26/2016 8:31 AM, Ken Brown wrote:
> This looks like a bug I reported several years ago; it actually has
> nothing to do with emacs:
> 
>   https://www.cygwin.com/ml/cygwin/2011-10/msg00445.html
> 
> It was fixed but then reappeared some months later:
> 
>   https://www.cygwin.com/ml/cygwin/2012-05/msg00049.html
> 
> It was fixed again but apparently is back.  The test case from the
> original report still exhibits the problem.

I've tracked down the commits that fixed this bug in the past.  The first fix was

commit 31d2bedc585420092eb53895c5f5646651f13215
Author: Christopher Faylor <me@cgf.cx>
Date:   Sun Oct 23 19:01:47 2011 +0000

    * fhandler_tty.cc (fhandler_pty_slave::read): Use consistent way for testing
    ReadFile return.
    * pipe.cc (fhandler_pipe::create_selectable): Open the write side of the pipe
    in message-mode to force writing as "chunks".  Explain why.

The second was

commit fb9d631817cc2b5d83c2a6ff928851d201c992bf
Author: Christopher Faylor <me@cgf.cx>
Date:   Fri May 4 03:00:43 2012 +0000

    * DevNotes: Add entry cgf-000002.
    * fhandler_tty.cc (bytes_available): Revert to previous Oct-2011 behavior where
    a dummy buffer is used to determine how many bytes will be read.
    (fhandler_pty_master::ioctl): Correct coercion in assignment.

A few weeks later the code was simplified:

commit bd8afa5eb160b56715b805befe850a5ba2131d28
Author: Christopher Faylor <me@cgf.cx>
Date:   Wed May 16 01:56:41 2012 +0000

    * DevNotes: Add entry cgf-000008.
    * fhandler_tty.cc (bytes_available): Simplify by returning the number of bytes
    available in the message unless that is zero.

I've looked at the current code in the vicinity of these changes, and nothing jumps out at me as obviously breaking the previous fixes; but that doesn't mean much.

Ken

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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-05-31  1:47   ` gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)] Ken Brown
@ 2016-05-31  9:35     ` Ken Brown
  2016-05-31 22:41       ` Corinna Vinschen
  0 siblings, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-05-31  9:35 UTC (permalink / raw)
  To: cygwin

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

On 5/30/2016 4:02 PM, Ken Brown wrote:
> On 5/26/2016 8:31 AM, Ken Brown wrote:
>> This looks like a bug I reported several years ago; it actually has
>> nothing to do with emacs:
>>
>>   https://www.cygwin.com/ml/cygwin/2011-10/msg00445.html
>>
>> It was fixed but then reappeared some months later:
>>
>>   https://www.cygwin.com/ml/cygwin/2012-05/msg00049.html
>>
>> It was fixed again but apparently is back.  The test case from the
>> original report still exhibits the problem.
>
> I've tracked down the commits that fixed this bug in the past.  The first fix was
>
> commit 31d2bedc585420092eb53895c5f5646651f13215
> Author: Christopher Faylor <me@cgf.cx>
> Date:   Sun Oct 23 19:01:47 2011 +0000
>
>     * fhandler_tty.cc (fhandler_pty_slave::read): Use consistent way for testing
>     ReadFile return.
>     * pipe.cc (fhandler_pipe::create_selectable): Open the write side of the pipe
>     in message-mode to force writing as "chunks".  Explain why.
>
> The second was
>
> commit fb9d631817cc2b5d83c2a6ff928851d201c992bf
> Author: Christopher Faylor <me@cgf.cx>
> Date:   Fri May 4 03:00:43 2012 +0000
>
>     * DevNotes: Add entry cgf-000002.
>     * fhandler_tty.cc (bytes_available): Revert to previous Oct-2011 behavior where
>     a dummy buffer is used to determine how many bytes will be read.
>     (fhandler_pty_master::ioctl): Correct coercion in assignment.
>
> A few weeks later the code was simplified:
>
> commit bd8afa5eb160b56715b805befe850a5ba2131d28
> Author: Christopher Faylor <me@cgf.cx>
> Date:   Wed May 16 01:56:41 2012 +0000
>
>     * DevNotes: Add entry cgf-000008.
>     * fhandler_tty.cc (bytes_available): Simplify by returning the number of bytes
>     available in the message unless that is zero.
>
> I've looked at the current code in the vicinity of these changes, and nothing jumps out at me as obviously breaking the previous fixes; but that doesn't mean much.

FWIW, if I take my original test case, as modified by cgf, and uncomment 
the line "sleep (1);", then the program finishes successfully.  I don't 
know if that provides a clue.

For convenience, I'm attaching the modified test case.

Ken


[-- Attachment #2: gdbstc.cc --]
[-- Type: text/plain, Size: 1712 bytes --]

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pty.h>
#include <string.h>
#include <sys/wait.h>

void get_output (int fd);

int
main (int argc, const char **argv) 
{
  int master;
  pid_t pid;

  if ((pid = forkpty (&master, NULL, NULL, NULL)) < 0)
    {
      perror ("forkpty");
      exit (1);
    }
  /* child */
  if (pid == 0) 
    {
      const char *av[100];
      // putenv ("HOME=/tmp");
      int i = 0;
#ifdef STRACE_GDB
      av[i++] = "strace";
      av[i++] = "-o";
      av[i++] = "/tmp/strace.out";
#ifdef __CYGWIN__
      av[i++] = "--mask=all+paranoid";
#endif
#endif
      av[i++] = argv[1] ?: "gdb";
      fprintf (stderr, "*** using %s\n", av[0]);
      av[i++] = "-i=mi";
      av[i] = NULL;
      execvp (av[0], (char * const *) av);
      /* shouldn't get here */
      exit (1);
    }
  /* parent */
  const char *input[20];

  int i = 0;
  input[i++] = "1-inferior-tty-set /dev/pty3\n";
  input[i++] = "2-gdb-set height 0\n";
  input[i++] = "3-gdb-set non-stop 1\n";
  input[i++] = "4-file-list-exec-source-files\n";
  input[i++] = "5-file-list-exec-source-file\n";
  input[i++] = "6-gdb-show prompt\n";
  input[i++] = "7-stack-info-frame\n";
  input[i++] = "8-thread-info\n";
  input[i++] = "9-break-list\n";
  input[i++] = "q\n";
  input[i] = NULL;

  for (int i = 0; input[i]; ++i)
    {
      write (master, input[i], strlen (input[i]));
      sleep (1);
    }
  get_output (master);
  wait (NULL);
}

void
get_output (int fd)
{
  char buf[4096];

  while (1)
    {
      int nread = read (fd, buf, sizeof (buf));
      if (nread > 0)
	write (STDOUT_FILENO, buf, nread);
      else
	{
	  printf ("No more output.  nread %d\n", nread);
	  break;
	}
    }
}




[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-05-31  9:35     ` Ken Brown
@ 2016-05-31 22:41       ` Corinna Vinschen
  2016-06-01 12:51         ` Ken Brown
  0 siblings, 1 reply; 26+ messages in thread
From: Corinna Vinschen @ 2016-05-31 22:41 UTC (permalink / raw)
  To: cygwin

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

On May 30 18:41, Ken Brown wrote:
> On 5/30/2016 4:02 PM, Ken Brown wrote:
> > On 5/26/2016 8:31 AM, Ken Brown wrote:
> > > This looks like a bug I reported several years ago; it actually has
> > > nothing to do with emacs:
> > > 
> > >   https://www.cygwin.com/ml/cygwin/2011-10/msg00445.html
> > > 
> > > It was fixed but then reappeared some months later:
> > > 
> > >   https://www.cygwin.com/ml/cygwin/2012-05/msg00049.html
> > > 
> > > It was fixed again but apparently is back.  The test case from the
> > > original report still exhibits the problem.
> > 
> > I've tracked down the commits that fixed this bug in the past.  The first fix was
> > 
> > commit 31d2bedc585420092eb53895c5f5646651f13215
> > Author: Christopher Faylor <me@cgf.cx>
> > Date:   Sun Oct 23 19:01:47 2011 +0000
> > 
> >     * fhandler_tty.cc (fhandler_pty_slave::read): Use consistent way for testing
> >     ReadFile return.
> >     * pipe.cc (fhandler_pipe::create_selectable): Open the write side of the pipe
> >     in message-mode to force writing as "chunks".  Explain why.
> > 
> > The second was
> > 
> > commit fb9d631817cc2b5d83c2a6ff928851d201c992bf
> > Author: Christopher Faylor <me@cgf.cx>
> > Date:   Fri May 4 03:00:43 2012 +0000
> > 
> >     * DevNotes: Add entry cgf-000002.
> >     * fhandler_tty.cc (bytes_available): Revert to previous Oct-2011 behavior where
> >     a dummy buffer is used to determine how many bytes will be read.
> >     (fhandler_pty_master::ioctl): Correct coercion in assignment.
> > 
> > A few weeks later the code was simplified:
> > 
> > commit bd8afa5eb160b56715b805befe850a5ba2131d28
> > Author: Christopher Faylor <me@cgf.cx>
> > Date:   Wed May 16 01:56:41 2012 +0000
> > 
> >     * DevNotes: Add entry cgf-000008.
> >     * fhandler_tty.cc (bytes_available): Simplify by returning the number of bytes
> >     available in the message unless that is zero.
> > 
> > I've looked at the current code in the vicinity of these changes, and nothing jumps out at me as obviously breaking the previous fixes; but that doesn't mean much.
> 
> FWIW, if I take my original test case, as modified by cgf, and uncomment the
> line "sleep (1);", then the program finishes successfully.  I don't know if
> that provides a clue.
> 
> For convenience, I'm attaching the modified test case.

Any chance you could bisect Cygwin to help finding the culprit?


Thanks,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-05-31 22:41       ` Corinna Vinschen
@ 2016-06-01 12:51         ` Ken Brown
  2016-06-01 13:02           ` Ken Brown
  2016-06-01 14:18           ` Corinna Vinschen
  0 siblings, 2 replies; 26+ messages in thread
From: Ken Brown @ 2016-06-01 12:51 UTC (permalink / raw)
  To: cygwin

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

On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
> Any chance you could bisect Cygwin to help finding the culprit?

The culprit is

commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
Author: Takashi Yano <takashi.yano@nifty.ne.jp>
Date:   Fri Apr 3 13:07:35 2015 +0900

    Cygwin hangs up if several keys are typed during outputting a lot of texts.

        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
        "readlen" not to use "bytes_in_pipe" value directly.


Reverting that commit fixes the problem.  To test, compile and run the attached file.

$ gcc gdbstc.cc

$ ./a
1-inferior-tty-set /dev/pty3
2-gdb-set height 0
3-gdb-set non-stop 1
4-file-list-exec-source-files
5-file-list-exec-source-file
6-gdb-show prompt
7-stack-info-frame
8-thread-info
9-break-list
q
*** using gdb
=thread-group-added,id="i1"
~"GNU gdb (GDB) (Cygwin 7.10.1-1) 7.10.1\n"
~"Copyright (C) 2015 Free Software Foundation, Inc.\n"
~"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.  Type \"show copying\"\nand \"show warranty\" for details.\n"
~"This GDB was configured as \"i686-pc-cygwin\".\nType \"show configuration\" for configuration details."
~"\nFor bug reporting instructions, please see:\n"
~"<http://www.gnu.org/software/gdb/bugs/>.\n"
~"Find the GDB manual and other documentation resources online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"
~"For help, type \"help\".\n"
~"Type \"apropos word\" to search for commands related to \"word\".\n"
=cmd-param-changed,param="auto-load safe-path",value="/"
(gdb)
...

In bad cases (bug present), the program hangs and doesn't complete until the gdb process is killed from a different terminal.  In good cases it runs to completion.

Ken

[-- Attachment #2: gdbstc.cc --]
[-- Type: text/plain, Size: 1714 bytes --]

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pty.h>
#include <string.h>
#include <sys/wait.h>

void get_output (int fd);

int
main (int argc, const char **argv) 
{
  int master;
  pid_t pid;

  if ((pid = forkpty (&master, NULL, NULL, NULL)) < 0)
    {
      perror ("forkpty");
      exit (1);
    }
  /* child */
  if (pid == 0) 
    {
      const char *av[100];
      // putenv ("HOME=/tmp");
      int i = 0;
#ifdef STRACE_GDB
      av[i++] = "strace";
      av[i++] = "-o";
      av[i++] = "/tmp/strace.out";
#ifdef __CYGWIN__
      av[i++] = "--mask=all+paranoid";
#endif
#endif
      av[i++] = argv[1] ?: "gdb";
      fprintf (stderr, "*** using %s\n", av[0]);
      av[i++] = "-i=mi";
      av[i] = NULL;
      execvp (av[0], (char * const *) av);
      /* shouldn't get here */
      exit (1);
    }
  /* parent */
  const char *input[20];

  int i = 0;
  input[i++] = "1-inferior-tty-set /dev/pty3\n";
  input[i++] = "2-gdb-set height 0\n";
  input[i++] = "3-gdb-set non-stop 1\n";
  input[i++] = "4-file-list-exec-source-files\n";
  input[i++] = "5-file-list-exec-source-file\n";
  input[i++] = "6-gdb-show prompt\n";
  input[i++] = "7-stack-info-frame\n";
  input[i++] = "8-thread-info\n";
  input[i++] = "9-break-list\n";
  input[i++] = "q\n";
  input[i] = NULL;

  for (int i = 0; input[i]; ++i)
    {
      write (master, input[i], strlen (input[i]));
      // sleep (1);
    }
  get_output (master);
  wait (NULL);
}

void
get_output (int fd)
{
  char buf[4096];

  while (1)
    {
      int nread = read (fd, buf, sizeof (buf));
      if (nread > 0)
	write (STDOUT_FILENO, buf, nread);
      else
	{
	  printf ("No more output.  nread %d\n", nread);
	  break;
	}
    }
}



[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 12:51         ` Ken Brown
@ 2016-06-01 13:02           ` Ken Brown
  2016-06-01 14:28             ` Corinna Vinschen
  2016-06-01 14:18           ` Corinna Vinschen
  1 sibling, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-06-01 13:02 UTC (permalink / raw)
  To: cygwin

On 6/1/2016 8:51 AM, Ken Brown wrote:
> On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
>> Any chance you could bisect Cygwin to help finding the culprit?
>
> The culprit is
>
> commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
> Author: Takashi Yano <takashi.yano@nifty.ne.jp>
> Date:   Fri Apr 3 13:07:35 2015 +0900
>
>    Cygwin hangs up if several keys are typed during outputting a lot of
> texts.
>
>        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
>        "readlen" not to use "bytes_in_pipe" value directly.
>
>
> Reverting that commit fixes the problem.

Unfortunately, all kinds of other things break.  For example, emacs 
exits immediately, ls produces no output,....

Ken


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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 12:51         ` Ken Brown
  2016-06-01 13:02           ` Ken Brown
@ 2016-06-01 14:18           ` Corinna Vinschen
  2016-06-06 10:12             ` Takashi Yano
  1 sibling, 1 reply; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-01 14:18 UTC (permalink / raw)
  To: cygwin, Takashi Yano

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

Hi Takashi,


can you please have a look?


Thanks,
Corinna


On Jun  1 08:51, Ken Brown wrote:
> On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
> > Any chance you could bisect Cygwin to help finding the culprit?
> 
> The culprit is
> 
> commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
> Author: Takashi Yano <takashi.yano@nifty.ne.jp>
> Date:   Fri Apr 3 13:07:35 2015 +0900
> 
>    Cygwin hangs up if several keys are typed during outputting a lot of texts.
> 
>        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
>        "readlen" not to use "bytes_in_pipe" value directly.
> 
> 
> Reverting that commit fixes the problem.  To test, compile and run the attached file.
> 
> $ gcc gdbstc.cc
> 
> $ ./a
> 1-inferior-tty-set /dev/pty3
> 2-gdb-set height 0
> 3-gdb-set non-stop 1
> 4-file-list-exec-source-files
> 5-file-list-exec-source-file
> 6-gdb-show prompt
> 7-stack-info-frame
> 8-thread-info
> 9-break-list
> q
> *** using gdb
> =thread-group-added,id="i1"
> ~"GNU gdb (GDB) (Cygwin 7.10.1-1) 7.10.1\n"
> ~"Copyright (C) 2015 Free Software Foundation, Inc.\n"
> ~"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.  Type \"show copying\"\nand \"show warranty\" for details.\n"
> ~"This GDB was configured as \"i686-pc-cygwin\".\nType \"show configuration\" for configuration details."
> ~"\nFor bug reporting instructions, please see:\n"
> ~"<http://www.gnu.org/software/gdb/bugs/>.\n"
> ~"Find the GDB manual and other documentation resources online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"
> ~"For help, type \"help\".\n"
> ~"Type \"apropos word\" to search for commands related to \"word\".\n"
> =cmd-param-changed,param="auto-load safe-path",value="/"
> (gdb)
> ...
> 
> In bad cases (bug present), the program hangs and doesn't complete until the gdb process is killed from a different terminal.  In good cases it runs to completion.
> 
> Ken

> #include <stdio.h>
> #include <stdlib.h>
> #include <unistd.h>
> #include <pty.h>
> #include <string.h>
> #include <sys/wait.h>
> 
> void get_output (int fd);
> 
> int
> main (int argc, const char **argv) 
> {
>   int master;
>   pid_t pid;
> 
>   if ((pid = forkpty (&master, NULL, NULL, NULL)) < 0)
>     {
>       perror ("forkpty");
>       exit (1);
>     }
>   /* child */
>   if (pid == 0) 
>     {
>       const char *av[100];
>       // putenv ("HOME=/tmp");
>       int i = 0;
> #ifdef STRACE_GDB
>       av[i++] = "strace";
>       av[i++] = "-o";
>       av[i++] = "/tmp/strace.out";
> #ifdef __CYGWIN__
>       av[i++] = "--mask=all+paranoid";
> #endif
> #endif
>       av[i++] = argv[1] ?: "gdb";
>       fprintf (stderr, "*** using %s\n", av[0]);
>       av[i++] = "-i=mi";
>       av[i] = NULL;
>       execvp (av[0], (char * const *) av);
>       /* shouldn't get here */
>       exit (1);
>     }
>   /* parent */
>   const char *input[20];
> 
>   int i = 0;
>   input[i++] = "1-inferior-tty-set /dev/pty3\n";
>   input[i++] = "2-gdb-set height 0\n";
>   input[i++] = "3-gdb-set non-stop 1\n";
>   input[i++] = "4-file-list-exec-source-files\n";
>   input[i++] = "5-file-list-exec-source-file\n";
>   input[i++] = "6-gdb-show prompt\n";
>   input[i++] = "7-stack-info-frame\n";
>   input[i++] = "8-thread-info\n";
>   input[i++] = "9-break-list\n";
>   input[i++] = "q\n";
>   input[i] = NULL;
> 
>   for (int i = 0; input[i]; ++i)
>     {
>       write (master, input[i], strlen (input[i]));
>       // sleep (1);
>     }
>   get_output (master);
>   wait (NULL);
> }
> 
> void
> get_output (int fd)
> {
>   char buf[4096];
> 
>   while (1)
>     {
>       int nread = read (fd, buf, sizeof (buf));
>       if (nread > 0)
> 	write (STDOUT_FILENO, buf, nread);
>       else
> 	{
> 	  printf ("No more output.  nread %d\n", nread);
> 	  break;
> 	}
>     }
> }
> 
> 

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


-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 13:02           ` Ken Brown
@ 2016-06-01 14:28             ` Corinna Vinschen
  2016-06-01 14:29               ` Corinna Vinschen
  2016-06-01 14:33               ` Ken Brown
  0 siblings, 2 replies; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-01 14:28 UTC (permalink / raw)
  To: cygwin

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

Hi Ken,

On Jun  1 09:02, Ken Brown wrote:
> On 6/1/2016 8:51 AM, Ken Brown wrote:
> > On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
> > > Any chance you could bisect Cygwin to help finding the culprit?
> > 
> > The culprit is
> > 
> > commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
> > Author: Takashi Yano <takashi.yano@nifty.ne.jp>
> > Date:   Fri Apr 3 13:07:35 2015 +0900
> > 
> >    Cygwin hangs up if several keys are typed during outputting a lot of
> > texts.
> > 
> >        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
> >        "readlen" not to use "bytes_in_pipe" value directly.
> > 
> > 
> > Reverting that commit fixes the problem.
> 
> Unfortunately, all kinds of other things break.  For example, emacs exits
> immediately, ls produces no output,....

Are you sure?  I just tried it myself and ls as well as emacs work
fine for me.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 14:28             ` Corinna Vinschen
@ 2016-06-01 14:29               ` Corinna Vinschen
  2016-06-01 14:33               ` Ken Brown
  1 sibling, 0 replies; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-01 14:29 UTC (permalink / raw)
  To: cygwin

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

On Jun  1 16:28, Corinna Vinschen wrote:
> Hi Ken,
> 
> On Jun  1 09:02, Ken Brown wrote:
> > On 6/1/2016 8:51 AM, Ken Brown wrote:
> > > On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
> > > > Any chance you could bisect Cygwin to help finding the culprit?
> > > 
> > > The culprit is
> > > 
> > > commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
> > > Author: Takashi Yano <takashi.yano@nifty.ne.jp>
> > > Date:   Fri Apr 3 13:07:35 2015 +0900
> > > 
> > >    Cygwin hangs up if several keys are typed during outputting a lot of
> > > texts.
> > > 
> > >        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
> > >        "readlen" not to use "bytes_in_pipe" value directly.
> > > 
> > > 
> > > Reverting that commit fixes the problem.
> > 
> > Unfortunately, all kinds of other things break.  For example, emacs exits
> > immediately, ls produces no output,....
> 
> Are you sure?  I just tried it myself and ls as well as emacs work
> fine for me.

... and, of course, your gdb stc works fine, too.


Corinna



-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 14:28             ` Corinna Vinschen
  2016-06-01 14:29               ` Corinna Vinschen
@ 2016-06-01 14:33               ` Ken Brown
  2016-06-01 15:22                 ` Ken Brown
  1 sibling, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-06-01 14:33 UTC (permalink / raw)
  To: cygwin

On 6/1/2016 10:28 AM, Corinna Vinschen wrote:
> Hi Ken,
>
> On Jun  1 09:02, Ken Brown wrote:
>> On 6/1/2016 8:51 AM, Ken Brown wrote:
>>> On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
>>>> Any chance you could bisect Cygwin to help finding the culprit?
>>>
>>> The culprit is
>>>
>>> commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
>>> Author: Takashi Yano <takashi.yano@nifty.ne.jp>
>>> Date:   Fri Apr 3 13:07:35 2015 +0900
>>>
>>>    Cygwin hangs up if several keys are typed during outputting a lot of
>>> texts.
>>>
>>>        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
>>>        "readlen" not to use "bytes_in_pipe" value directly.
>>>
>>>
>>> Reverting that commit fixes the problem.
>>
>> Unfortunately, all kinds of other things break.  For example, emacs exits
>> immediately, ls produces no output,....
>
> Are you sure?  I just tried it myself and ls as well as emacs work
> fine for me.

It works for me now too.  I must have done something wrong the first 
time I tried.

Thanks for rechecking.

Ken


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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 14:33               ` Ken Brown
@ 2016-06-01 15:22                 ` Ken Brown
  2016-06-01 18:29                   ` Corinna Vinschen
  0 siblings, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-06-01 15:22 UTC (permalink / raw)
  To: cygwin

On 6/1/2016 10:33 AM, Ken Brown wrote:
> On 6/1/2016 10:28 AM, Corinna Vinschen wrote:
>> Hi Ken,
>>
>> On Jun  1 09:02, Ken Brown wrote:
>>> On 6/1/2016 8:51 AM, Ken Brown wrote:
>>>> On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
>>>>> Any chance you could bisect Cygwin to help finding the culprit?
>>>>
>>>> The culprit is
>>>>
>>>> commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
>>>> Author: Takashi Yano <takashi.yano@nifty.ne.jp>
>>>> Date:   Fri Apr 3 13:07:35 2015 +0900
>>>>
>>>>    Cygwin hangs up if several keys are typed during outputting a lot of
>>>> texts.
>>>>
>>>>        * fhandler_tty.cc (fhandler_pty_slave::read): Change
>>>> calculation of
>>>>        "readlen" not to use "bytes_in_pipe" value directly.
>>>>
>>>>
>>>> Reverting that commit fixes the problem.
>>>
>>> Unfortunately, all kinds of other things break.  For example, emacs
>>> exits
>>> immediately, ls produces no output,....
>>
>> Are you sure?  I just tried it myself and ls as well as emacs work
>> fine for me.
>
> It works for me now too.  I must have done something wrong the first
> time I tried.

And this also fixes the original problem in emacs that started the thread:

   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html

Ken


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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 15:22                 ` Ken Brown
@ 2016-06-01 18:29                   ` Corinna Vinschen
  2016-06-01 19:05                     ` Ken Brown
  0 siblings, 1 reply; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-01 18:29 UTC (permalink / raw)
  To: cygwin, Takashi Yano

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

On Jun  1 11:22, Ken Brown wrote:
> On 6/1/2016 10:33 AM, Ken Brown wrote:
> > On 6/1/2016 10:28 AM, Corinna Vinschen wrote:
> > > Hi Ken,
> > > 
> > > On Jun  1 09:02, Ken Brown wrote:
> > > > On 6/1/2016 8:51 AM, Ken Brown wrote:
> > > > > On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
> > > > > > Any chance you could bisect Cygwin to help finding the culprit?
> > > > > 
> > > > > The culprit is
> > > > > 
> > > > > commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
> > > > > Author: Takashi Yano <takashi.yano@nifty.ne.jp>
> > > > > Date:   Fri Apr 3 13:07:35 2015 +0900
> > > > > 
> > > > >    Cygwin hangs up if several keys are typed during outputting a lot of
> > > > > texts.
> > > > > 
> > > > >        * fhandler_tty.cc (fhandler_pty_slave::read): Change
> > > > > calculation of
> > > > >        "readlen" not to use "bytes_in_pipe" value directly.
> > > > > 
> > > > > 
> > > > > Reverting that commit fixes the problem.
> > > > 
> > > > Unfortunately, all kinds of other things break.  For example, emacs
> > > > exits
> > > > immediately, ls produces no output,....
> > > 
> > > Are you sure?  I just tried it myself and ls as well as emacs work
> > > fine for me.
> > 
> > It works for me now too.  I must have done something wrong the first
> > time I tried.
> 
> And this also fixes the original problem in emacs that started the thread:
> 
>   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html

I reverted commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e in git master
for now, unless we find a reason to rework this again.


Thanks,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 18:29                   ` Corinna Vinschen
@ 2016-06-01 19:05                     ` Ken Brown
  2016-06-01 19:54                       ` Corinna Vinschen
  0 siblings, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-06-01 19:05 UTC (permalink / raw)
  To: cygwin; +Cc: Peter Castro

On 6/1/2016 2:28 PM, Corinna Vinschen wrote:
> On Jun  1 11:22, Ken Brown wrote:
>> On 6/1/2016 10:33 AM, Ken Brown wrote:
>>> On 6/1/2016 10:28 AM, Corinna Vinschen wrote:
>>>> Hi Ken,
>>>>
>>>> On Jun  1 09:02, Ken Brown wrote:
>>>>> On 6/1/2016 8:51 AM, Ken Brown wrote:
>>>>>> On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
>>>>>>> Any chance you could bisect Cygwin to help finding the culprit?
>>>>>>
>>>>>> The culprit is
>>>>>>
>>>>>> commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
>>>>>> Author: Takashi Yano <takashi.yano@nifty.ne.jp>
>>>>>> Date:   Fri Apr 3 13:07:35 2015 +0900
>>>>>>
>>>>>>    Cygwin hangs up if several keys are typed during outputting a lot of
>>>>>> texts.
>>>>>>
>>>>>>        * fhandler_tty.cc (fhandler_pty_slave::read): Change
>>>>>> calculation of
>>>>>>        "readlen" not to use "bytes_in_pipe" value directly.
>>>>>>
>>>>>>
>>>>>> Reverting that commit fixes the problem.
>>>>>
>>>>> Unfortunately, all kinds of other things break.  For example, emacs
>>>>> exits
>>>>> immediately, ls produces no output,....
>>>>
>>>> Are you sure?  I just tried it myself and ls as well as emacs work
>>>> fine for me.
>>>
>>> It works for me now too.  I must have done something wrong the first
>>> time I tried.
>>
>> And this also fixes the original problem in emacs that started the thread:
>>
>>   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html
>
> I reverted commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e in git master
> for now, unless we find a reason to rework this again.

Thanks.  By the way, I'd like to take the opportunity to thank Peter 
Castro for the Cygwin Time Machine 
(http://www.fruitbat.org/Cygwin/#cygwintimemachine).  The bisection I 
did, spanning a period of about 4 years, would have been virtually 
impossible without it.

Ken


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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 19:05                     ` Ken Brown
@ 2016-06-01 19:54                       ` Corinna Vinschen
  2016-06-01 20:01                         ` Ken Brown
  0 siblings, 1 reply; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-01 19:54 UTC (permalink / raw)
  To: cygwin

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

On Jun  1 15:05, Ken Brown wrote:
> On 6/1/2016 2:28 PM, Corinna Vinschen wrote:
> > On Jun  1 11:22, Ken Brown wrote:
> > > And this also fixes the original problem in emacs that started the thread:
> > > 
> > >   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html
> > 
> > I reverted commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e in git master
> > for now, unless we find a reason to rework this again.
> 
> Thanks.  By the way, I'd like to take the opportunity to thank Peter Castro
> for the Cygwin Time Machine
> (http://www.fruitbat.org/Cygwin/#cygwintimemachine).  The bisection I did,
> spanning a period of about 4 years, would have been virtually impossible
> without it.

Huh.  I was thinking of git bisect.  It's incredibly helpful.  But, yes,
all power to the Cygwin time machine :)


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 19:54                       ` Corinna Vinschen
@ 2016-06-01 20:01                         ` Ken Brown
  2016-06-01 21:05                           ` [GOLDSTAR] " Corinna Vinschen
  0 siblings, 1 reply; 26+ messages in thread
From: Ken Brown @ 2016-06-01 20:01 UTC (permalink / raw)
  To: cygwin

On 6/1/2016 3:54 PM, Corinna Vinschen wrote:
> On Jun  1 15:05, Ken Brown wrote:
>> On 6/1/2016 2:28 PM, Corinna Vinschen wrote:
>>> On Jun  1 11:22, Ken Brown wrote:
>>>> And this also fixes the original problem in emacs that started the thread:
>>>>
>>>>   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html
>>>
>>> I reverted commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e in git master
>>> for now, unless we find a reason to rework this again.
>>
>> Thanks.  By the way, I'd like to take the opportunity to thank Peter Castro
>> for the Cygwin Time Machine
>> (http://www.fruitbat.org/Cygwin/#cygwintimemachine).  The bisection I did,
>> spanning a period of about 4 years, would have been virtually impossible
>> without it.
>
> Huh.  I was thinking of git bisect.  It's incredibly helpful.  But, yes,
> all power to the Cygwin time machine :)

I first used the time machine to narrow down the problem to between 
1.7.35 and 2.0.0.  Then I used git bisect to finish the job.  But even 
for that I needed the time machine; for example, I needed an old version 
of the w32api headers in order to build an old cygwin1.dll.

Ken


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

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

* [GOLDSTAR] Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 20:01                         ` Ken Brown
@ 2016-06-01 21:05                           ` Corinna Vinschen
  2016-06-02  2:09                             ` Andrew Schulman
  0 siblings, 1 reply; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-01 21:05 UTC (permalink / raw)
  To: cygwin

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

On Jun  1 16:01, Ken Brown wrote:
> On 6/1/2016 3:54 PM, Corinna Vinschen wrote:
> > On Jun  1 15:05, Ken Brown wrote:
> > > On 6/1/2016 2:28 PM, Corinna Vinschen wrote:
> > > > On Jun  1 11:22, Ken Brown wrote:
> > > > > And this also fixes the original problem in emacs that started the thread:
> > > > > 
> > > > >   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html
> > > > 
> > > > I reverted commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e in git master
> > > > for now, unless we find a reason to rework this again.
> > > 
> > > Thanks.  By the way, I'd like to take the opportunity to thank Peter Castro
> > > for the Cygwin Time Machine
> > > (http://www.fruitbat.org/Cygwin/#cygwintimemachine).  The bisection I did,
> > > spanning a period of about 4 years, would have been virtually impossible
> > > without it.
> > 
> > Huh.  I was thinking of git bisect.  It's incredibly helpful.  But, yes,
> > all power to the Cygwin time machine :)
> 
> I first used the time machine to narrow down the problem to between 1.7.35
> and 2.0.0.  Then I used git bisect to finish the job.  But even for that I
> needed the time machine; for example, I needed an old version of the w32api
> headers in order to build an old cygwin1.dll.

Wow, thanks for going to such great lengths to track down the
regression.  Andrew, do we have a GOLDSTAR for Ken here?  He really
deserves it.


Thanks,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [GOLDSTAR] Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 21:05                           ` [GOLDSTAR] " Corinna Vinschen
@ 2016-06-02  2:09                             ` Andrew Schulman
  0 siblings, 0 replies; 26+ messages in thread
From: Andrew Schulman @ 2016-06-02  2:09 UTC (permalink / raw)
  To: cygwin

> On Jun  1 16:01, Ken Brown wrote:
> > On 6/1/2016 3:54 PM, Corinna Vinschen wrote:
> > > On Jun  1 15:05, Ken Brown wrote:
> > > > On 6/1/2016 2:28 PM, Corinna Vinschen wrote:
> > > > > On Jun  1 11:22, Ken Brown wrote:
> > > > > > And this also fixes the original problem in emacs that started the thread:
> > > > > > 
> > > > > >   https://www.cygwin.com/ml/cygwin/2016-05/msg00318.html
> > > > > 
> > > > > I reverted commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e in git master
> > > > > for now, unless we find a reason to rework this again.
> > > > 
> > > > Thanks.  By the way, I'd like to take the opportunity to thank Peter Castro
> > > > for the Cygwin Time Machine
> > > > (http://www.fruitbat.org/Cygwin/#cygwintimemachine).  The bisection I did,
> > > > spanning a period of about 4 years, would have been virtually impossible
> > > > without it.
> > > 
> > > Huh.  I was thinking of git bisect.  It's incredibly helpful.  But, yes,
> > > all power to the Cygwin time machine :)
> > 
> > I first used the time machine to narrow down the problem to between 1.7.35
> > and 2.0.0.  Then I used git bisect to finish the job.  But even for that I
> > needed the time machine; for example, I needed an old version of the w32api
> > headers in order to build an old cygwin1.dll.
> 
> Wow, thanks for going to such great lengths to track down the
> regression.  Andrew, do we have a GOLDSTAR for Ken here?  He really
> deserves it.

Shiny! http://cygwin.com/goldstars/#KB


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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-01 14:18           ` Corinna Vinschen
@ 2016-06-06 10:12             ` Takashi Yano
  2016-06-06 13:16               ` Corinna Vinschen
  2016-06-06 14:01               ` Ken Brown
  0 siblings, 2 replies; 26+ messages in thread
From: Takashi Yano @ 2016-06-06 10:12 UTC (permalink / raw)
  To: cygwin

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

Hi Corinna,

I had looked into this problem, and found the cause.

'man termios' says:
"A read(2) returns at most one line of input" in canonical mode.

On cygwin 2.5.1, read(2) returns all data in buffer if the buffer
size specified is large enough. This behaviour is correct in
noncanonical mode, but is not correct in canonical mode.

So, I would like to propose a following patch.

diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index 6c00d61..733644f 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -756,10 +756,6 @@ fhandler_pty_slave::read (void *ptr, size_t& len)
 	  goto out;
 	}
 
-      /* On first peek determine no. of bytes to flush. */
-      if (!ptr && len == UINT_MAX)
-	len = (size_t) bytes_in_pipe;
-
       if (ptr && !bytes_in_pipe && !vmin && !time_to_wait)
 	{
 	  ReleaseMutex (input_mutex);
@@ -767,7 +763,9 @@ fhandler_pty_slave::read (void *ptr, size_t& len)
 	  return;
 	}
 
-      readlen = MIN (bytes_in_pipe, MIN (len, sizeof (buf)));
+      readlen = bytes_in_pipe ? MIN (len, sizeof (buf)) : 0;
+      if (get_ttyp ()->ti.c_lflag & ICANON && ptr)
+	readlen = MIN (bytes_in_pipe, readlen);
 
 #if 0
       /* Why on earth is the read length reduced to vmin, even if more bytes
@@ -804,7 +802,8 @@ fhandler_pty_slave::read (void *ptr, size_t& len)
 		}
 	      if (n)
 		{
-		  len -= n;
+		  if (!(!ptr && len == UINT_MAX)) /* not tcflush() */
+		    len -= n;
 		  totalread += n;
 		  if (ptr)
 		    {

While checking this problem, I found a bug of tcflush().
tcflush() flushes only partial data in the buffer.

The patch above also fixes this bug.

A test case attached (pty_readlen.c) is for confirming
the behaviour of read() and tcflush(). 

Test results are as follows.

debian GNU/Linux:
----------
01234
----------
56789
ABCDE
----------
----------

cygwin 2.5.1:
----------
01234
56789
----------
ABCDE
----------
KLMNO
----------

cygwin 2.5.2 (git head):
----------
01234
----------
56789
----------
FGHIJ
----------

cygwin with a patch I propose:
----------
01234
----------
56789
ABCDE
----------
----------

Of course, Ken's gdbstc works fine without sleep with this patch,
as well as original emacs case.



On Wed, 1 Jun 2016 16:18:20 +0200
Corinna Vinschen <corinna-cygwin@cygwin.com> wrote:

> Hi Takashi,
> 
> 
> can you please have a look?
> 
> 
> Thanks,
> Corinna
> 
> 
> On Jun  1 08:51, Ken Brown wrote:
> > On 5/31/2016 5:41 AM, Corinna Vinschen wrote:
> > > Any chance you could bisect Cygwin to help finding the culprit?
> > 
> > The culprit is
> > 
> > commit 252a07b0ad3353abcd0fcd9b1b65ff977acd679e
> > Author: Takashi Yano <takashi.yano@nifty.ne.jp>
> > Date:   Fri Apr 3 13:07:35 2015 +0900
> > 
> >    Cygwin hangs up if several keys are typed during outputting a lot of texts.
> > 
> >        * fhandler_tty.cc (fhandler_pty_slave::read): Change calculation of
> >        "readlen" not to use "bytes_in_pipe" value directly.
> > 
> > 
> > Reverting that commit fixes the problem.  To test, compile and run the attached file.
> > 
> > $ gcc gdbstc.cc
> > 
> > $ ./a
> > 1-inferior-tty-set /dev/pty3
> > 2-gdb-set height 0
> > 3-gdb-set non-stop 1
> > 4-file-list-exec-source-files
> > 5-file-list-exec-source-file
> > 6-gdb-show prompt
> > 7-stack-info-frame
> > 8-thread-info
> > 9-break-list
> > q
> > *** using gdb
> > =thread-group-added,id="i1"
> > ~"GNU gdb (GDB) (Cygwin 7.10.1-1) 7.10.1\n"
> > ~"Copyright (C) 2015 Free Software Foundation, Inc.\n"
> > ~"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.  Type \"show copying\"\nand \"show warranty\" for details.\n"
> > ~"This GDB was configured as \"i686-pc-cygwin\".\nType \"show configuration\" for configuration details."
> > ~"\nFor bug reporting instructions, please see:\n"
> > ~"<http://www.gnu.org/software/gdb/bugs/>.\n"
> > ~"Find the GDB manual and other documentation resources online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"
> > ~"For help, type \"help\".\n"
> > ~"Type \"apropos word\" to search for commands related to \"word\".\n"
> > =cmd-param-changed,param="auto-load safe-path",value="/"
> > (gdb)
> > ...
> > 
> > In bad cases (bug present), the program hangs and doesn't complete until the gdb process is killed from a different terminal.  In good cases it runs to completion.
> > 
> > Ken
> 
> > #include <stdio.h>
> > #include <stdlib.h>
> > #include <unistd.h>
> > #include <pty.h>
> > #include <string.h>
> > #include <sys/wait.h>
> > 
> > void get_output (int fd);
> > 
> > int
> > main (int argc, const char **argv) 
> > {
> >   int master;
> >   pid_t pid;
> > 
> >   if ((pid = forkpty (&master, NULL, NULL, NULL)) < 0)
> >     {
> >       perror ("forkpty");
> >       exit (1);
> >     }
> >   /* child */
> >   if (pid == 0) 
> >     {
> >       const char *av[100];
> >       // putenv ("HOME=/tmp");
> >       int i = 0;
> > #ifdef STRACE_GDB
> >       av[i++] = "strace";
> >       av[i++] = "-o";
> >       av[i++] = "/tmp/strace.out";
> > #ifdef __CYGWIN__
> >       av[i++] = "--mask=all+paranoid";
> > #endif
> > #endif
> >       av[i++] = argv[1] ?: "gdb";
> >       fprintf (stderr, "*** using %s\n", av[0]);
> >       av[i++] = "-i=mi";
> >       av[i] = NULL;
> >       execvp (av[0], (char * const *) av);
> >       /* shouldn't get here */
> >       exit (1);
> >     }
> >   /* parent */
> >   const char *input[20];
> > 
> >   int i = 0;
> >   input[i++] = "1-inferior-tty-set /dev/pty3\n";
> >   input[i++] = "2-gdb-set height 0\n";
> >   input[i++] = "3-gdb-set non-stop 1\n";
> >   input[i++] = "4-file-list-exec-source-files\n";
> >   input[i++] = "5-file-list-exec-source-file\n";
> >   input[i++] = "6-gdb-show prompt\n";
> >   input[i++] = "7-stack-info-frame\n";
> >   input[i++] = "8-thread-info\n";
> >   input[i++] = "9-break-list\n";
> >   input[i++] = "q\n";
> >   input[i] = NULL;
> > 
> >   for (int i = 0; input[i]; ++i)
> >     {
> >       write (master, input[i], strlen (input[i]));
> >       // sleep (1);
> >     }
> >   get_output (master);
> >   wait (NULL);
> > }
> > 
> > void
> > get_output (int fd)
> > {
> >   char buf[4096];
> > 
> >   while (1)
> >     {
> >       int nread = read (fd, buf, sizeof (buf));
> >       if (nread > 0)
> > 	write (STDOUT_FILENO, buf, nread);
> >       else
> > 	{
> > 	  printf ("No more output.  nread %d\n", nread);
> > 	  break;
> > 	}
> >     }
> > }
> > 
> > 
> 
> > --
> > Problem reports:       http://cygwin.com/problems.html
> > FAQ:                   http://cygwin.com/faq/
> > Documentation:         http://cygwin.com/docs.html
> > Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> 
> 
> -- 
> Corinna Vinschen                  Please, send mails regarding Cygwin to
> Cygwin Maintainer                 cygwin AT cygwin DOT com
> Red Hat


-- 
Takashi Yano <takashi.yano@nifty.ne.jp>

[-- Attachment #2: pty_readlen.c --]
[-- Type: text/x-csrc, Size: 1382 bytes --]

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <termios.h>
#include <sys/ioctl.h>
#include <pty.h>

int main()
{
	int master, slave;
	struct termios tt;
	int val;
	char buf[1024];
	int len;

	if (openpty(&master, &slave, NULL, NULL, NULL) < 0) {
		perror("openpty()");
		exit(EXIT_FAILURE);
	}

	write(STDOUT_FILENO, "----------\n", 11);

	/* Write two messages */
	write(master, "01234\n", 6);
	write(master, "56789\n", 6);

	/* Read (Canonical Mode) */
	len = read(slave, buf, sizeof(buf));
	if (len>0) write(STDOUT_FILENO, buf, len);

	/* Rrset Canonical Mode */
	tcgetattr(slave, &tt);
	tt.c_lflag &= ~ICANON;
	tcsetattr(slave, TCSANOW, &tt);

	write(STDOUT_FILENO, "----------\n", 11);

	write(master, "ABCDE\n", 6);

	/* Read (Non-Canonical Mode) */
	len = read(slave, buf, sizeof(buf));
	if (len>0) write(STDOUT_FILENO, buf, len);

	write(STDOUT_FILENO, "----------\n", 11);

	/* Write two messages */
	write(master, "FGHIJ\n", 6);
	write(master, "KLMNO\n", 6);

	/* Set Canonical Mode */
	tcgetattr(slave, &tt);
	tt.c_lflag |= ICANON;
	tcsetattr(slave, TCSANOW, &tt);

	/* Flush buffer */
	tcflush(slave, TCIFLUSH);
	val = 1;
	ioctl(slave, FIONBIO, &val);

	/* Read */
	len = read(slave, buf, sizeof(buf));
	if (len>0) write(STDOUT_FILENO, buf, len);

	write(STDOUT_FILENO, "----------\n", 11);

	close(slave);
	close(master);

	return EXIT_SUCCESS;
}


[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-06 10:12             ` Takashi Yano
@ 2016-06-06 13:16               ` Corinna Vinschen
  2016-06-07 13:14                 ` Takashi Yano
  2016-06-06 14:01               ` Ken Brown
  1 sibling, 1 reply; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-06 13:16 UTC (permalink / raw)
  To: cygwin

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

On Jun  6 19:12, Takashi Yano wrote:
> Hi Corinna,
> 
> I had looked into this problem, and found the cause.
> 
> 'man termios' says:
> "A read(2) returns at most one line of input" in canonical mode.
> 
> On cygwin 2.5.1, read(2) returns all data in buffer if the buffer
> size specified is large enough. This behaviour is correct in
> noncanonical mode, but is not correct in canonical mode.
> 
> So, I would like to propose a following patch.
> [...]
> While checking this problem, I found a bug of tcflush().
> tcflush() flushes only partial data in the buffer.
> 
> The patch above also fixes this bug.
> 
> A test case attached (pty_readlen.c) is for confirming
> the behaviour of read() and tcflush(). 
> [...]
> Of course, Ken's gdbstc works fine without sleep with this patch,
> as well as original emacs case.

Thanks a lot.  Patch applied.

I uploaded a new snapshot with this patch to https://cygwin.com/snapshots/
for quick testing.

Just one question:  In future, would you mind terribly to provide
patches in `git format-patch' format (and ideally on the cygwin-patches
mailing list)?  It's easier to handle by lazy maintainers... :)


Thanks,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-06 10:12             ` Takashi Yano
  2016-06-06 13:16               ` Corinna Vinschen
@ 2016-06-06 14:01               ` Ken Brown
  1 sibling, 0 replies; 26+ messages in thread
From: Ken Brown @ 2016-06-06 14:01 UTC (permalink / raw)
  To: cygwin

On 6/6/2016 6:12 AM, Takashi Yano wrote:
> Of course, Ken's gdbstc works fine without sleep with this patch,
> as well as original emacs case.

Confirmed.  Thanks.

Ken


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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-06 13:16               ` Corinna Vinschen
@ 2016-06-07 13:14                 ` Takashi Yano
  2016-06-07 16:11                   ` Corinna Vinschen
  0 siblings, 1 reply; 26+ messages in thread
From: Takashi Yano @ 2016-06-07 13:14 UTC (permalink / raw)
  To: cygwin

On Mon, 6 Jun 2016 15:16:42 +0200 Corinna Vinschen wrote:
> I uploaded a new snapshot with this patch to https://cygwin.com/snapshots/
> for quick testing.

I have tested the snapshot. It seems quite good. Thanks a lot.

> Just one question:  In future, would you mind terribly to provide
> patches in `git format-patch' format (and ideally on the cygwin-patches
> mailing list)?  It's easier to handle by lazy maintainers... :)

'git format-patch' format? OK, I will learn about it.
Next time, I will try to use it.

-- 
Takashi Yano <takashi.yano@nifty.ne.jp>

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

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

* Re: gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)]
  2016-06-07 13:14                 ` Takashi Yano
@ 2016-06-07 16:11                   ` Corinna Vinschen
  0 siblings, 0 replies; 26+ messages in thread
From: Corinna Vinschen @ 2016-06-07 16:11 UTC (permalink / raw)
  To: cygwin

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

On Jun  7 22:14, Takashi Yano wrote:
> On Mon, 6 Jun 2016 15:16:42 +0200 Corinna Vinschen wrote:
> > I uploaded a new snapshot with this patch to https://cygwin.com/snapshots/
> > for quick testing.
> 
> I have tested the snapshot. It seems quite good. Thanks a lot.
> 
> > Just one question:  In future, would you mind terribly to provide
> > patches in `git format-patch' format (and ideally on the cygwin-patches
> > mailing list)?  It's easier to handle by lazy maintainers... :)

The advantage is that you can simply attach the patch to your mail
and the maintainer can pick it using `git am' and it's automatically
commited with correct author name and log message.

Why on earth did I defend CVS for so long...?

> 'git format-patch' format? OK, I will learn about it.
> Next time, I will try to use it.

Thank you!


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2016-06-07 16:11 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-26 12:32 emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb) Tobias Zawada
2016-05-26 15:48 ` William M. (Mike) Miller
2016-05-26 17:48 ` Ken Brown
2016-05-26 18:00   ` Tobias Zawada
2016-05-26 18:01     ` Ken Brown
2016-05-31  1:47   ` gdb pty problem [Was: emacs gud-interface is not updated after gdb command execution (maybe because of incomplete output from gdb)] Ken Brown
2016-05-31  9:35     ` Ken Brown
2016-05-31 22:41       ` Corinna Vinschen
2016-06-01 12:51         ` Ken Brown
2016-06-01 13:02           ` Ken Brown
2016-06-01 14:28             ` Corinna Vinschen
2016-06-01 14:29               ` Corinna Vinschen
2016-06-01 14:33               ` Ken Brown
2016-06-01 15:22                 ` Ken Brown
2016-06-01 18:29                   ` Corinna Vinschen
2016-06-01 19:05                     ` Ken Brown
2016-06-01 19:54                       ` Corinna Vinschen
2016-06-01 20:01                         ` Ken Brown
2016-06-01 21:05                           ` [GOLDSTAR] " Corinna Vinschen
2016-06-02  2:09                             ` Andrew Schulman
2016-06-01 14:18           ` Corinna Vinschen
2016-06-06 10:12             ` Takashi Yano
2016-06-06 13:16               ` Corinna Vinschen
2016-06-07 13:14                 ` Takashi Yano
2016-06-07 16:11                   ` Corinna Vinschen
2016-06-06 14:01               ` Ken Brown

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