From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from conssluserg-05.nifty.com (conssluserg-05.nifty.com [210.131.2.90]) by sourceware.org (Postfix) with ESMTPS id B50C33858D3C for ; Fri, 18 Mar 2022 13:28:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B50C33858D3C Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=nifty.ne.jp Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=nifty.ne.jp Received: from Express5800-S70 (ak036016.dynamic.ppp.asahi-net.or.jp [119.150.36.16]) (authenticated) by conssluserg-05.nifty.com with ESMTP id 22IDSXEX007611; Fri, 18 Mar 2022 22:28:34 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-05.nifty.com 22IDSXEX007611 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.ne.jp; s=dec2015msa; t=1647610114; bh=IMWd3pNnJLbef24ASTpZrej/rZYobOpW6motw/wvpsw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=gwqqnzBZya1TaMjsAuVTypM79X7kHJntgJstDo2zoPj+oVgh/zIkv2if8nzJbfah/ 7/Sju/hDTwuc+QwhcXyNO3/YxBpvOntS0OSBGJIdMRoGDMD+Px1bxIOV4B5soHbsW0 rhp6JU7Q/qOE0IHp3StePgs+xwUkCU2ek1SWHZUqjOP85YI4NO9Qj+FtOSAZVKIPKM bz7MSg3fV/TdPM6uBIYxaDsOG5SmMYo5s5QrTgPiQYRUyoeACOWEi9JimqlyjApHLz +ShBpmPcjgCmoD0m79OZ6ZIUMtfxFB6F1xGeLCyehrUabI7LshhEQDOTG7V0u/lqBN r1jVd23GRwDtg== X-Nifty-SrcIP: [119.150.36.16] Date: Fri, 18 Mar 2022 22:28:36 +0900 From: Takashi Yano To: cygwin@cygwin.com Cc: Orgad Shaneh Subject: Re: Typed characters are mis-ordered when CPU usage is high Message-Id: <20220318222836.7fdebd15e677d145787daf0b@nifty.ne.jp> In-Reply-To: References: <20220302081259.2a7e522ef1a9e3e6da0aa259@nifty.ne.jp> <20220303090208.4a04e35756b7868fe9b4701d@nifty.ne.jp> <20220312063625.9ca3d42d4e2e941a13fa7909@nifty.ne.jp> <20220318132335.d5635fe9fc782ed53bddf7bc@nifty.ne.jp> <20220318142243.1751c742ebaae47e8fba9b47@nifty.ne.jp> <20220318153058.22d217eea1bb746e709da555@nifty.ne.jp> <20220318211522.936158f91219816ca5c707e7@nifty.ne.jp> 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=-4.8 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, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: Fri, 18 Mar 2022 13:29:03 -0000 On Fri, 18 Mar 2022 15:04:31 +0200 Orgad Shaneh wrote: > On Fri, Mar 18, 2022 at 2:15 PM Takashi Yano wrote: > > Thanks. I can reproduce the issue. I think I found the cause. > > The two unexpected things happen. > > > > (1) wVirtualKeyCode and wVirtualScanCode of readback key event may > > be null'ed even if they are not zero on WriteConsoleInputW(). > > Therefore, memcmp() report the event is not equal. > > (2) WriteConsoleInputW() may not be atomic. The event sequence which > > is written by WriteConsoleInputW() may be inserted by key input > > in the middle of the sequence. > > > > A patch for these issues is attached. Could you please test? > > Awesome, looks good now. Thank you very much! > > Hope this is the last bit :) Thanks for testing! -- Takashi Yano