From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from conssluserg-04.nifty.com (conssluserg-04.nifty.com [210.131.2.83]) by sourceware.org (Postfix) with ESMTPS id 25FEC394EC17 for ; Sun, 14 Feb 2021 08:44:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 25FEC394EC17 Received: from Express5800-S70 (y085178.dynamic.ppp.asahi-net.or.jp [118.243.85.178]) (authenticated) by conssluserg-04.nifty.com with ESMTP id 11E8hwjp031104; Sun, 14 Feb 2021 17:43:59 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-04.nifty.com 11E8hwjp031104 X-Nifty-SrcIP: [118.243.85.178] Date: Sun, 14 Feb 2021 17:43:58 +0900 From: Takashi Yano To: cygwin@cygwin.com Cc: Alvin Seville Subject: Re: Cygwin doesn't handle SIGWINCH properly in Windows Terminal Message-Id: <20210214174358.f828f285a566846254c3c54a@nifty.ne.jp> In-Reply-To: References: X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.30; i686-pc-mingw32) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Feb 2021 08:44:38 -0000 On Sat, 13 Feb 2021 20:39:39 +1000 Alvin Seville wrote: > Windows build number: Win32NT 10.0.19042.0 Microsoft Windows NT 10.0.19042.0 > Windows Terminal version (if applicable): 1.5.10271.0 > > Script to reproduce this issue: > > #!/usr/bin/env bashfunction outputText() > { > local text=$1 > local -i textLength=${#text} > > local -i line="$(tput lines) / 2" > local -i col="$(tput cols) / 2 - $textLength / 2" > > clear > echo -en "\e[$line;${col}H$text" > } > trap "outputText 'Hello world!'" SIGWINCH > > outputText 'Hello world!'while truedo > :done This is because cygwin console handles SIGWINCH when the input messages is processed. If the process does not call either read() or select(), SIGWINCH will not be sent. This is the long standing problem of the implementation and hard to fix. Therefore, I expect the following code should work, however I have noticed it does not. #!/usr/bin/env bash function outputText() { local text=$1 local -i textLength=${#text} local -i line="$(tput lines) / 2" local -i col="$(tput cols) / 2 - $textLength / 2" clear echo -en "\e[$line;${col}H$text" } trap "outputText 'Hello world!'" SIGWINCH outputText 'Hello world!' while true do read # <- Call read here done This seems to be a bug of console code. I will submit a patch for this issue. -- Takashi Yano