public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Non-Cygwin slaves inside tmux
@ 2015-05-26 16:08 David Macek
  2015-05-27 10:57 ` Robert Pendell
  2015-06-08 13:22 ` Corinna Vinschen
  0 siblings, 2 replies; 5+ messages in thread
From: David Macek @ 2015-05-26 16:08 UTC (permalink / raw)
  To: cygwin

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

Hi.

My testcase: run mintty-bash, run tmux inside and run netsh inside. Try to type.

Result: horrible lags

Expected result: it's possible to type normally

I tried multiple Cygwin snapshots from the last 5 months, hoping that it could be a regression (therefore easily fixable), but all of them exhibit the same issue.

A quick Google search didn't show any similar errors, so I'm reporting here in hope someone will be able to say "yeah, that's easy, let me fix that". :)

Assuming I understand correctly the roles here -- bash does fork+exec(netsh) and Cygwin emulates that by creating a bash subprocess which creates a netsh subprocess; the bash process that is spawned to execute the native executable is creating threads and named pipes like crazy. Every few seconds a new pipe and thread pop up. All the old threads seem to be stuck in:

 #0 0x00007ffad7f3120a in ntdll!ZwWaitForSingleObject () from /cygdrive/c/Windows/SYSTEM32/ntdll.dll
 #1 0x00007ffad53b1118 in WaitForSingleObjectEx () from /cygdrive/c/Windows/system32/KERNELBASE.dll
 #2 0x0000000180134cfb in muto::acquire (this=0x639363438, ms=ms@entry=4294967295) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/sync.cc:87
 #3 0x00000001800f9ed9 in lock_process (exiting=false, this=) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/sync.h:53
 #4 commune_process (arg=0x6e7cb90) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/pinfo.cc:542
... several other frames which are related to Cygwin threads, I assume ...

strace shows tmux getting these:

seterrno_from_win_error: /usr/src/ports/cygwin/cygwin-2.0.2-1.x86_64/src/newlib-cygwin/winsup/cygwin/pinfo.cc:737 windows error 995

-- 
David Macek


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4234 bytes --]

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

* Re: Non-Cygwin slaves inside tmux
  2015-05-26 16:08 Non-Cygwin slaves inside tmux David Macek
@ 2015-05-27 10:57 ` Robert Pendell
  2015-05-27 16:08   ` John Hein
  2015-06-04 23:11   ` David Macek
  2015-06-08 13:22 ` Corinna Vinschen
  1 sibling, 2 replies; 5+ messages in thread
From: Robert Pendell @ 2015-05-27 10:57 UTC (permalink / raw)
  To: cygwin

On Tue, May 26, 2015 at 11:33 AM, David Macek <...> wrote:
> Hi.
>
> My testcase: run mintty-bash, run tmux inside and run netsh inside. Try to type.
>
> Result: horrible lags
>
> Expected result: it's possible to type normally
>
> I tried multiple Cygwin snapshots from the last 5 months, hoping that it could be a regression (therefore easily fixable), but all of them exhibit the same issue.
>
> A quick Google search didn't show any similar errors, so I'm reporting here in hope someone will be able to say "yeah, that's easy, let me fix that". :)
>
> Assuming I understand correctly the roles here -- bash does fork+exec(netsh) and Cygwin emulates that by creating a bash subprocess which creates a netsh subprocess; the bash process that is spawned to execute the native executable is creating threads and named pipes like crazy. Every few seconds a new pipe and thread pop up. All the old threads seem to be stuck in:
>
>  #0 0x00007ffad7f3120a in ntdll!ZwWaitForSingleObject () from /cygdrive/c/Windows/SYSTEM32/ntdll.dll
>  #1 0x00007ffad53b1118 in WaitForSingleObjectEx () from /cygdrive/c/Windows/system32/KERNELBASE.dll
>  #2 0x0000000180134cfb in muto::acquire (this=0x639363438, ms=ms@entry=4294967295) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/sync.cc:87
>  #3 0x00000001800f9ed9 in lock_process (exiting=false, this=) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/sync.h:53
>  #4 commune_process (arg=0x6e7cb90) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/pinfo.cc:542
> ... several other frames which are related to Cygwin threads, I assume ...
>
> strace shows tmux getting these:
>
> seterrno_from_win_error: /usr/src/ports/cygwin/cygwin-2.0.2-1.x86_64/src/newlib-cygwin/winsup/cygwin/pinfo.cc:737 windows error 995
>
> --
> David Macek
>

Hmm... Error 995 is ERROR_OPERATION_ABORTED.  This could mean
something is blocking/killing it.  I don't use tmux locally on a
personal basis so while we wait for someone that does to see if the
issue is reproducible for them can you please *attach* a cygcheck.out
for your system and also check your system for BLODA just in case?

Robert Pendell
A perfect world is one of chaos.
Keybase: http://keybase.io/shinji257

--
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] 5+ messages in thread

* Re: Non-Cygwin slaves inside tmux
  2015-05-27 10:57 ` Robert Pendell
@ 2015-05-27 16:08   ` John Hein
  2015-06-04 23:11   ` David Macek
  1 sibling, 0 replies; 5+ messages in thread
From: John Hein @ 2015-05-27 16:08 UTC (permalink / raw)
  To: cygwin

Robert Pendell shinji+cygwin-at-elite-systems.org |cygwin_ml_nodigest| wrote at 06:04 -0400 on May 27, 2015:
 > On Tue, May 26, 2015 at 11:33 AM, David Macek <...> wrote:
 > > Hi.
 > >
 > > My testcase: run mintty-bash, run tmux inside and run netsh inside. Try to type.
 > >
 > > Result: horrible lags
 > >
 > > Expected result: it's possible to type normally
 > >
 > > I tried multiple Cygwin snapshots from the last 5 months, hoping that it could be a regression (therefore easily fixable), but all of them exhibit the same issue.
 > >
 > > A quick Google search didn't show any similar errors, so I'm reporting here in hope someone will be able to say "yeah, that's easy, let me fix that".. :)
 > >
 > > Assuming I understand correctly the roles here -- bash does fork+exec(netsh) and Cygwin emulates that by creating a bash subprocess which creates a netsh subprocess; the bash process that is spawned to execute the native executable is creating threads and named pipes like crazy. Every few seconds a new pipe and thread pop up. All the old threads seem to be stuck in:
 > >
 > >  #0 0x00007ffad7f3120a in ntdll!ZwWaitForSingleObject () from /cygdrive/c/Windows/SYSTEM32/ntdll.dll
 > >  #1 0x00007ffad53b1118 in WaitForSingleObjectEx () from /cygdrive/c/Windows/system32/KERNELBASE.dll
 > >  #2 0x0000000180134cfb in muto::acquire (this=0x639363438, ms=ms@entry=4294967295) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/sync.cc:87
 > >  #3 0x00000001800f9ed9 in lock_process (exiting=false, this=) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/sync.h:53
 > >  #4 commune_process (arg=0x6e7cb90) at /usr/src/debug/cygwin-2.0.2-1/winsup/cygwin/pinfo.cc:542
 > > ... several other frames which are related to Cygwin threads, I assume ...
 > >
 > > strace shows tmux getting these:
 > >
 > > seterrno_from_win_error: /usr/src/ports/cygwin/cygwin-2.0.2-1.x86_64/src/newlib-cygwin/winsup/cygwin/pinfo.cc:737 windows error 995
 > >
 > > --
 > > David Macek
 > >
 >
 > Hmm... Error 995 is ERROR_OPERATION_ABORTED.  This could mean
 > something is blocking/killing it.  I don't use tmux locally on a
 > personal basis so while we wait for someone that does to see if the
 > issue is reproducible for them can you please *attach* a cygcheck.out
 > for your system and also check your system for BLODA just in case?

Fails for me, too.  Running netsh in a shell under tmux, then "help"
(in any shell, not just bash - ash, tcsh, too) is very constipated.
And it slows down all other tmux operations (e.g., switching windows,
doing an ls in another window).  screen is not affected.

Reverting cygwin from 2.0.2-1 to 1.7.35 didn't change anything here.

Exiting netsh (or killing it) restores lively tmux behavior.
Sometimes killing netsh also kills the parent shell.

--
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] 5+ messages in thread

* Re: Non-Cygwin slaves inside tmux
  2015-05-27 10:57 ` Robert Pendell
  2015-05-27 16:08   ` John Hein
@ 2015-06-04 23:11   ` David Macek
  1 sibling, 0 replies; 5+ messages in thread
From: David Macek @ 2015-06-04 23:11 UTC (permalink / raw)
  To: cygwin


[-- Attachment #1.1: Type: text/plain, Size: 324 bytes --]

On 27. 5. 2015 12:04, Robert Pendell wrote:
> while we wait for someone that does to see if the
> issue is reproducible for them can you please *attach* a cygcheck.out
> for your system

Attached.

> and also check your system for BLODA just in case?

Disabling Windows Defender had no effect.

-- 
David Macek

[-- Attachment #1.2: cygcheck.out --]
[-- Type: text/plain, Size: 30111 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Fri Jun 05 00:06:23 2015

Windows 8.1 Professional Ver 6.3 Build 9600 

Path:	D:\cygwin64\usr\local\bin
	D:\cygwin64\bin
	C:\Windows\System32
	C:\Windows

Output from D:\cygwin64\bin\id.exe
UID: 197609(ether)             GID: 197121(None)
197121(None)                   197612(Debugger Users)
197613(HelpLibraryUpdaters)    578(Hyper-V Administrators)
559(Performance Log Users)     545(Users)
4(INTERACTIVE)                 66049(CONSOLE LOGON)
11(Authenticated Users)        15(This Organization)
113(Local account)             4095(CurrentSession)
66048(LOCAL)                   262154(NTLM Authentication)
401408(Medium Mandatory Level)

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

USER = 'ether'
PWD = '/cygdrive/c/Users/ether'
HOME = '/cygdrive/c/Users/ether'

USERDOMAIN_ROAMINGPROFILE = 'onyx'
HOMEPATH = '\Users\ether'
APPDATA = 'C:\Users\ether\AppData\Roaming'
ProgramW6432 = 'C:\Program Files'
PACKAGER = 'David Macek <david.macek.0@gmail.com>'
HOSTNAME = 'onyx'
SHELL = '/bin/bash'
TERM = 'xterm'
_NT_SYMBOL_PATH = 'symsrv*symsrv.dll*C:\temporary\symbols*http://msdl.microsoft.com/download/symbols'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 58 Stepping 9, GenuineIntel'
PROFILEREAD = 'true'
WINDIR = 'C:\Windows'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/cygdrive/c/Users/ether'
ORIGINAL_PATH = '/cygdrive/c/Windows/System32:/cygdrive/c/Windows'
USERDOMAIN = 'onyx'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\ProgramData'
ANSICON_DEF = '7'
PYTHONIOENCODING = 'UTF-8 '
!:: = '::\'
TEMP = '/tmp'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
USERNAME = 'ether'
PROCESSOR_LEVEL = '6'
ProgramFiles(x86) = 'C:\Program Files (x86)'
ChocolateyInstall = 'C:\temporary\chocolatey'
FONTCONFIG_PATH = 'C:\Users\ether\AppData\Roaming\fontconfig'
PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\PowerShell\Modules\'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
EDITOR = 'mc -e'
VS120COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\'
USERPROFILE = 'C:\Users\ether'
LANG = 'en_US.UTF-8'
TZ = 'Europe/Prague'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
LOGONSERVER = '\\ONYX'
PYTHONDONTWRITEBYTECODE = 'True'
CommonProgramW6432 = 'C:\Program Files\Common Files'
PROCESSOR_ARCHITECTURE = 'AMD64'
LOCALAPPDATA = 'C:\Users\ether\AppData\Local'
!C: = 'C:\Users\ether'
ProgramData = 'C:\ProgramData'
EXECIGNORE = '*.dll'
SHLVL = '1'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
HOMEDRIVE = 'C:'
[redacted]
_NT_SYMCACHE_PATH = 'C:\temporary\symbols\_cache'
PROMPT = '$E[1m$P$G$E[0m '
COMSPEC = 'C:\Windows\system32\cmd.exe'
TMP = '/tmp'
SYSTEMROOT = 'C:\Windows'
PRINTER = [redacted]
PROCESSOR_REVISION = '3a09'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
UNISONBACKUPDIR = 'W:\backups\unison'
PROGRAMFILES = 'C:\Program Files'
VS110COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\'
NUMBER_OF_PROCESSORS = '4'
asl.log = 'Destination=file'
SESSIONNAME = 'Console'
LC_TIME = 'C.UTF-8'
COMPUTERNAME = 'ONYX'
!ExitCode = '00000000'
ANSICON = '150x9999 (150x42)'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\W:\[redacted]'
  f76db13c759b51fa = '\??\D:\cygwin64'
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\TortoiseGit\History\RemoteBranch\W_\temporary\development\cygwin
  (default) = 'develop'
HKEY_CURRENT_USER\Software\TortoiseGit\TortoiseProc\PullFetch\W_\dev\cygwin_0
  (default) = 0x00000000
HKEY_CURRENT_USER\Software\TortoiseGit\TortoiseProc\Push\W_\dev\cygwin
  (default) = 0x00000001
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\D:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'D:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Installations
  (default) = '\??\D:\cygwin32'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\setup
  (default) = 'D:\cygwin32'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: f76db13c759b51fa Path: D:\cygwin64
  User:   Key: 32cfc40cfda8d1c3 Path: W:\[redacted] (ORPHANED)
  User:   Key: f76db13c759b51fa Path: D:\cygwin64

c:  hd  NTFS    113943Mb  88% CP CS UN PA FC     System
d:  hd  NTFS    953867Mb  97% CP CS UN PA FC     Storage
w:  hd  NTFS    953867Mb  97% CP CS UN PA FC     Storage

D:\cygwin64              /          system  binary,auto
c:\temporary\cygwin\tmp  /tmp       system  binary
D:\cygwin64\bin          /usr/bin   system  binary,auto
D:\cygwin64\lib          /usr/lib   system  binary,auto
cygdrive prefix          /cygdrive  user    binary,posix=0,auto

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

   38k 2013/07/19 D:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2013-07-19 15:07
   88k 2015/03/02 D:\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygatomic-1.dll" v0.0 ts=2015-03-02 22:05
   16k 2013/03/26 D:\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
  180k 2015/03/23 D:\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
   64k 2013/03/07 D:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2013-03-07 02:54
   10k 2015/02/20 D:\cygwin64\bin\cygcharset-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcharset-1.dll" v0.0 ts=2015-02-20 17:07
  117k 2013/05/05 D:\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 16:41
   13k 2015/03/19 D:\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
    9k 2013/03/07 D:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2013-03-07 09:29
 2213k 2015/03/19 D:\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2015-03-19 16:49
  428k 2015/04/29 D:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2015-04-29 20:40
 1526k 2013/03/08 D:\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 07:55
  111k 2013/03/08 D:\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 07:56
  472k 2013/03/08 D:\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 07:58
  154k 2013/10/20 D:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 21:56
  226k 2013/07/07 D:\cygwin64\bin\cygevent-2-0-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygevent-2-0-5.dll" v0.0 ts=2013-07-07 10:05
  135k 2013/07/07 D:\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=2013-07-07 10:05
  103k 2013/07/07 D:\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=2013-07-07 10:05
   20k 2013/07/07 D:\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=2013-07-07 10:05
   10k 2013/07/07 D:\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=2013-07-07 10:05
   16k 2013/03/28 D:\cygwin64\bin\cygevtlog-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygevtlog-0.dll" v0.0 ts=2013-03-28 14:00
  147k 2013/07/31 D:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2013-07-31 22:53
   30k 2014/10/14 D:\cygwin64\bin\cygfam-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygfam-0.dll" v0.0 ts=2014-10-14 21:33
   26k 2015/01/11 D:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-01-11 09:25
   56k 2015/05/18 D:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2015-05-18 21:52
   69k 2015/02/23 D:\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2015-02-22 20:22
   40k 2014/05/27 D:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=1970-01-01 00:00
   13k 2014/05/27 D:\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 00:00
 1244k 2015/03/12 D:\cygwin64\bin\cyggio-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggio-2.0-0.dll" v0.0 ts=2015-03-12 06:25
  956k 2015/03/12 D:\cygwin64\bin\cygglib-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglib-2.0-0.dll" v0.0 ts=2015-03-12 06:21
   14k 2015/03/12 D:\cygwin64\bin\cyggmodule-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmodule-2.0-0.dll" v0.0 ts=2015-03-12 06:21
  520k 2015/01/26 D:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2015-01-26 16:08
  867k 2015/02/13 D:\cygwin64\bin\cyggnutls-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-28.dll" v0.0 ts=2015-02-13 13:46
   24k 2015/02/13 D:\cygwin64\bin\cyggnutls-openssl-27.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-openssl-27.dll" v0.0 ts=2015-02-13 13:46
   22k 2015/02/13 D:\cygwin64\bin\cyggnutls-xssl-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-xssl-0.dll" v0.0 ts=2015-02-13 13:46
   42k 2015/02/13 D:\cygwin64\bin\cyggnutlsxx-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutlsxx-28.dll" v0.0 ts=2015-02-13 13:46
  281k 2015/03/12 D:\cygwin64\bin\cyggobject-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggobject-2.0-0.dll" v0.0 ts=2015-03-12 06:22
   73k 2015/03/02 D:\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-1.dll" v0.0 ts=2015-03-02 20:58
  255k 2015/06/02 D:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2015-06-02 04:41
    9k 2015/03/12 D:\cygwin64\bin\cyggthread-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggthread-2.0-0.dll" v0.0 ts=2015-03-12 06:21
   30k 2015/01/27 D:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2015-01-27 03:51
  168k 2015/02/12 D:\cygwin64\bin\cyghogweed-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyghogweed-2.dll" v0.0 ts=2015-02-12 17:27
  360k 2013/07/29 D:\cygwin64\bin\cygicons-0.dll - os=4.0 img=1.4 sys=5.2
                  "cygicons-0.dll" v0.0 ts=2013-07-29 02:27
 1009k 2015/02/20 D:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 17:07
  196k 2014/12/06 D:\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn-11.dll" v0.0 ts=2014-12-06 13:17
   40k 2015/02/20 D:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2015-02-20 18:01
  888k 2013/05/05 D:\cygwin64\bin\cygisl-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-10.dll" v0.0 ts=2013-05-05 16:36
  180k 2015/06/02 D:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2015-06-02 04:40
  719k 2015/06/02 D:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2015-06-02 04:41
   35k 2015/06/02 D:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2015-06-02 04:40
   45k 2015/02/19 D:\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-02-19 14:39
  246k 2015/02/19 D:\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-02-19 14:40
  261k 2015/02/19 D:\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-02-19 14:41
    6k 2015/06/03 D:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2015-06-03 12:57
  139k 2015/05/03 D:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2015-05-03 07:34
  113k 2015/05/06 D:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2015-05-06 08:05
  168k 2015/04/17 D:\cygwin64\bin\cygman-2-7-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-1.dll" v0.0 ts=2015-04-17 21:36
   22k 2015/04/17 D:\cygwin64\bin\cygmandb-2-7-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-1.dll" v0.0 ts=2015-04-17 21:36
   29k 2015/05/18 D:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2015-05-18 21:52
   89k 2015/03/01 D:\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2015-03-01 20:24
  334k 2015/01/26 D:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2015-01-26 16:14
   53k 2015/05/18 D:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2015-05-18 21:56
  301k 2015/05/18 D:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2015-05-18 21:51
  185k 2015/02/12 D:\cygwin64\bin\cygnettle-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygnettle-4.dll" v0.0 ts=2015-02-12 17:27
  319k 2015/06/01 D:\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 19:02
   14k 2015/05/18 D:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2015-05-18 21:52
  460k 2015/04/30 D:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2015-04-30 02:03
 1581k 2015/02/17 D:\cygwin64\bin\cygperl5_14.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_14.dll" v0.0 ts=2015-02-17 20:41
   39k 2015/04/09 D:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 21:04
   41k 2013/10/21 D:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2013-10-21 21:52
  305k 2015/03/02 D:\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygquadmath-0.dll" v0.0 ts=2015-03-02 21:37
  207k 2015/01/27 D:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2015-01-27 03:51
   97k 2014/11/24 D:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2014-11-24 18:22
   89k 2015/03/23 D:\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
  765k 2015/05/21 D:\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsqlite3-0.dll" v0.0 ts=2015-05-21 14:08
  143k 2015/03/17 D:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2015-03-17 04:00
  419k 2015/03/19 D:\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2015-03-19 16:49
   12k 2015/03/02 D:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2015-03-02 21:33
  941k 2015/02/23 D:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2015-02-22 20:37
  347k 2015/02/11 D:\cygwin64\bin\cygsyslog-ng-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsyslog-ng-0.dll" v0.0 ts=2015-02-11 10:20
   66k 2015/04/23 D:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2015-04-23 11:16
   52k 2015/05/18 D:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2015-05-18 21:51
   73k 2015/02/11 D:\cygwin64\bin\cygusb0.dll - os=4.0 img=0.0 sys=5.2
                  "cygusb0.dll" v0.0 ts=2015-02-11 01:16
   15k 2015/03/23 D:\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
   30k 2013/11/15 D:\cygwin64\bin\cygwrap-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygwrap-0.dll" v0.0 ts=2013-11-15 19:58
 1207k 2014/10/19 D:\cygwin64\bin\cygxml2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxml2-2.dll" v0.0 ts=2014-10-19 08:52
   80k 2014/11/19 D:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2014-11-19 23:08
 3221k 2015/06/03 D:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2015-06-03 12:57
    Cygwin DLL version info:
        DLL version: 2.0.3
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 287
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5


Service             : sshd                (Installation path: D:\msys64\usr)
Display name        : CYGWIN sshd
Current State       : Stopped
Command             : /usr/bin/sshd -D
stdin path          : /dev/null
stdout path         : /var/log/sshd.log
stderr path         : /var/log/sshd.log
Process Type        : Own Process
Startup             : Automatic
Dependencies        : tcpip
Account             : .\cyg_server


Cygwin Package Information
Last downloaded files to: D:\temporary\cygwin\packages
Last downloaded files from: ftp://mirror.cs.vt.edu/pub/cygwin/cygwin/

Package                                 Version                Status
_autorebase                             001002-1               OK
_update-info-dir                        00429-1                OK
alternatives                            1.3.30c-10             OK
attr                                    2.4.46-1               OK
base-cygwin                             3.8-1                  OK
base-files                              4.2-3                  OK
bash                                    4.3.39-2               OK
binutils                                2.25-1                 OK
bzip2                                   1.0.6-2                OK
ca-certificates                         2.4-2                  OK
coreutils                               8.23-4                 OK
cron                                    4.1-62                 OK
csih                                    0.9.8-6                OK
cygcheck-dep                            2.1-1                  OK
cygrunsrv                               1.62-1                 OK
cygutils                                1.4.14-1               OK
cygutils-extra                          1.4.14-1               OK
cygwin                                  2.0.3-1                OK
cygwin-debuginfo                        2.0.3-1                OK
cygwin-devel                            2.0.3-1                OK
cygwin-doc                              1.7.35-1               OK
cygwin32                                1.7.34-1               OK
cygwin32-binutils                       2.25-1                 OK
cygwin32-default-manifest               6.4-1                  OK
cygwin32-gcc-core                       4.9.2-1                OK
cygwin32-w32api-headers                 3.2.0-1                OK
cygwin32-w32api-runtime                 3.2.0-1                OK
dash                                    0.5.8-3                OK
diffutils                               3.3-2                  OK
editrights                              1.03-1                 OK
file                                    5.22-2                 OK
findutils                               4.5.12-1               OK
gamin                                   0.1.10-15              OK
gawk                                    4.1.3-1                OK
gcc-core                                4.9.2-3                OK
gcc-g++                                 4.9.2-3                OK
gdb                                     7.8-2                  OK
getent                                  2.18.90-4              OK
gnupg                                   1.4.19-2               OK
grep                                    2.21-2                 OK
groff                                   1.22.3-1               OK
gsettings-desktop-schemas               3.14.2-1               OK
gzip                                    1.6-1                  OK
hostname                                3.13-1                 OK
info                                    5.2-3                  OK
ipc-utils                               1.0-2                  OK
less                                    471-1                  OK
libargp                                 20110921-2             OK
libatomic1                              4.9.2-3                OK
libattr1                                2.4.46-1               OK
libblkid1                               2.25.2-2               OK
libbz2_1                                1.0.6-2                OK
libcharset1                             1.14-3                 OK
libcloog-isl4                           0.18.0-2               OK
libcom_err2                             1.42.12-2              OK
libcrypt0                               1.1-1                  OK
libcurl4                                7.42.1-1               OK
libdb5.3                                5.3.21-1               OK
libedit0                                20130712-1             OK
libevent2.0_5                           2.0.21-1               OK
libevtlog0                              0.2.12-2               OK
libexpat1                               2.1.0-3                OK
libfam0                                 0.1.10-15              OK
libffi6                                 3.2.1-1                OK
libgcc1                                 4.9.2-3                OK
libgdbm4                                1.11-1                 OK
libglib2.0_0                            2.42.2-1               OK
libgmp10                                6.0.0a-2               OK
libgnutls28                             3.2.21-1               OK
libgomp1                                4.9.2-3                OK
libgssapi_krb5_2                        1.13.2-1               OK
libhogweed2                             2.7-2                  OK
libiconv                                1.14-3                 OK
libiconv2                               1.14-3                 OK
libidn11                                1.29-1                 OK
libintl8                                0.19.4-1               OK
libisl10                                0.11.1-2               OK
libk5crypto3                            1.13.2-1               OK
libkrb5_3                               1.13.2-1               OK
libkrb5support0                         1.13.2-1               OK
liblzma5                                5.2.1-1                OK
libmpc3                                 1.0.3-1                OK
libmpfr4                                3.1.2-2                OK
libncursesw10                           5.9-20150516-1         OK
libnettle4                              2.7-2                  OK
libopenldap2_4_2                        2.4.40-2               OK
libopenssl100                           1.0.2a-1               OK
libp11-kit0                             0.22.1-1               OK
libpcre1                                8.37-1                 OK
libpipeline1                            1.4.0-1                OK
Empty package libpopt0
libpopt0                                1.16-1                 OK
libquadmath0                            4.9.2-3                OK
libreadline7                            6.3.8-1                OK
libsasl2_3                              2.1.26-9               OK
libsmartcols1                           2.25.2-2               OK
libsqlite3_0                            3.8.10.2-1             OK
libssh2_1                               1.5.0-1                OK
libssp0                                 4.9.2-3                OK
libstdc++6                              4.9.2-3                OK
libtasn1_6                              4.4-1                  OK
libusb0                                 1.2.6.0-2              OK
libuuid-devel                           2.25.2-2               OK
libuuid1                                2.25.2-2               OK
libwrap0                                7.6-22                 OK
libxml2                                 2.9.2-1                OK
login                                   1.11-1                 OK
lynx                                    2.8.7-2                OK
man-db                                  2.7.1-1                OK
mingw64-x86_64-binutils                 2.25.0.1.23f238d-1     OK
mingw64-x86_64-bzip2                    1.0.6-4                OK
mingw64-x86_64-gcc-ada                  4.9.2-1                OK
mingw64-x86_64-gcc-core                 4.9.2-1                OK
mingw64-x86_64-gcc-fortran              4.9.2-1                OK
mingw64-x86_64-gcc-g++                  4.9.2-1                OK
mingw64-x86_64-gcc-objc                 4.9.2-1                OK
mingw64-x86_64-google-breakpad-devel    1434-1                 OK
mingw64-x86_64-headers                  4.0.2-1                OK
mingw64-x86_64-hidapi                   0.8.0-rc1-1            OK
mingw64-x86_64-libgcrypt                1.6.3-1                OK
mingw64-x86_64-libgpg-error             1.18-1                 OK
mingw64-x86_64-minizip                  1.2.8-4                OK
mingw64-x86_64-pkg-config               0.28-1                 OK
mingw64-x86_64-pthreads                 20100619-5             OK
mingw64-x86_64-runtime                  4.0.2-1                OK
mingw64-x86_64-windows-default-manifest 6.4-1                  OK
mingw64-x86_64-winpthreads              4.0.2-1                OK
mingw64-x86_64-xz                       5.2.1-1                OK
mingw64-x86_64-zlib                     1.2.8-4                OK
mintty                                  1.2-beta1-1            OK
openssh                                 6.8p1-1                OK
openssl                                 1.0.2a-1               OK
p11-kit                                 0.22.1-1               OK
p11-kit-trust                           0.22.1-1               OK
perl                                    5.14.4-3               OK
perl_autorebase                         5.14.4-3               OK
perl_base                               5.14.4-3               OK
ping                                    1.0.2-1                OK
popt                                    1.16-1                 OK
python                                  2.7.10-1               OK
rebase                                  4.4.1-1                OK
run                                     1.3.3-1                OK
screen                                  4.2.1-2                OK
sed                                     4.2.2-3                OK
shared-mime-info                        1.3-3                  OK
shutdown                                1.10-1                 OK
syslog-ng                               3.2.5-2                OK
tar                                     1.28-1                 OK
terminfo                                5.9-20150516-1         OK
tmux                                    2.0-1                  OK
tzcode                                  2014j-1                OK
util-linux                              2.25.2-2               OK
vim-minimal                             7.4.729-2              OK
w32api-headers                          4.0.2-1                OK
w32api-runtime                          4.0.2-1                OK
wget                                    1.16.3-1               OK
which                                   2.20-2                 OK
windows-default-manifest                6.4-1                  OK
xz                                      5.2.1-1                OK
zlib0                                   1.2.8-3                OK
Use -h to see help about each section

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4234 bytes --]

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

* Re: Non-Cygwin slaves inside tmux
  2015-05-26 16:08 Non-Cygwin slaves inside tmux David Macek
  2015-05-27 10:57 ` Robert Pendell
@ 2015-06-08 13:22 ` Corinna Vinschen
  1 sibling, 0 replies; 5+ messages in thread
From: Corinna Vinschen @ 2015-06-08 13:22 UTC (permalink / raw)
  To: cygwin

On May 26 17:33, David Macek wrote:
> Hi.
> 
> My testcase: run mintty-bash, run tmux inside and run netsh inside. Try to type.
> 
> Result: horrible lags

I uploaded a Cygwin developer snapshot supposed to fix this issue to
https://cygwin.com/snapshots/  Please give it a try.  Replacing the DLL
with the release DLL should be sufficient.


Thanks,
Corinna

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

--
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] 5+ messages in thread

end of thread, other threads:[~2015-06-08 13:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-26 16:08 Non-Cygwin slaves inside tmux David Macek
2015-05-27 10:57 ` Robert Pendell
2015-05-27 16:08   ` John Hein
2015-06-04 23:11   ` David Macek
2015-06-08 13:22 ` Corinna Vinschen

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).