Re: Performance regression in cygwin 3.4.0

2022-12-08 Thread Takashi Yano via Cygwin
On Wed, 07 Dec 2022 19:38:19 + tryandbuy wrote: > Reading from stdin is very slow when a process runs outside of Cygwin > Terminal. > > Steps to reproduce: > 1. Create "test.txt" file using python code: > long_text = "10" * 2500 > with open(r'test.txt', 'w') as f: > for i in range(5000):

Performance regression in cygwin 3.4.0

2022-12-07 Thread tryandbuy via Cygwin
Reading from stdin is very slow when a process runs outside of Cygwin Terminal. Steps to reproduce: 1. Create "test.txt" file using python code: long_text = "10" * 2500 with open(r'test.txt', 'w') as f: for i in range(5000): f.write('KEY%03d: %d => %s\n' % (i % 100, i, long_text)) 2.