X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 542293985816 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1625740585; bh=y/jp7LLx1519h5rIaAidn4Pc6atw38OkVTentyV8SdY=; h=References:In-Reply-To:Date:Subject:To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=tvcz8YhCXP4GmmYhDsheg1OPdXHqpMl9SxZFBlLe16uaSsMlIk8Cd435mmd2AGLyM xDYKoRwSC2UEY1VQiLD5sCQiPa5H3gmd7oP2/f5HikLhFWsNTwIuTv42w+juMbqjUa enJ0weVzypIhLxI8P4ZArbY8dIdYkW/wvAtxaHd8= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2CB733858039 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=c9m0TyqSo13rHHhgaaD/s1dJLgezHl9ID425Z6iQQEQ=; b=oYTvHzi9Pah1mwI3uOviAgNRNZWdg3xBFpQCssNn2Hef23VLrqsOvPM5Frrtsu0zzW nnMR5uyus1Wm+qfu4tU76ljLFJ9p7HArza1KpFTmfccCAiasttxTp+uYq+SgUOcyZsqo kpfYNeYCD5XtoJzyE6FoDVOaa4H0tHPkRLnWJKu2AoyRSij36fAJBhaXEk8L9uTkhi9N 1enxIMGrA7leTAcH6iMvH1JEOoyRhTc9UmpGn7nCv+QLgqsjO8Ingt3Iv0nYvBMU2Uor yGMDOstYlmlc6qeoDgjSDTVzkO7+WXY1vgUAhjlY3w3IaJ/0SHRoyRl+fk+fmWsEwx4B 08pQ== X-Gm-Message-State: AOAM531/aaX6cirxb0S0TrwWVrvWkOC5L5x4XKsUdA2vnBrk7sL0oX43 Lm1ox/Sfd/xPyWlKPRitX3i1iNrXZPmJKBMeKa5uyyhm4YE= X-Google-Smtp-Source: ABdhPJwQzFFmNLjvq4Gw3h47BV73PS/MSNjo1YpPG/R4ncQVqjeXN0TQ6xxeHP8PNr/Q15mwibsrYNGlxTXjuFjAc+g= X-Received: by 2002:a02:620a:: with SMTP id d10mr26866609jac.22.1625740552427; Thu, 08 Jul 2021 03:35:52 -0700 (PDT) MIME-Version: 1.0 References: <2710589360 DOT 20210707215528 AT yandex DOT ru> In-Reply-To: <2710589360.20210707215528@yandex.ru> Date: Thu, 8 Jul 2021 16:35:41 +0600 Message-ID: Subject: Re: cygwin-3.2.0 + windows 10 - russian cyrilic input is broken To: cygwin AT cygwin DOT com X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, BODY_8BITS, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP 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-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 List-Id: General Cygwin discussions and problem reports List-Archive: List-Post: List-Help: List-Subscribe: , From: =?utf-8?b?0JXQs9C+0YDQvtCyINCV0LPQvtGAIHZpYSBDeWd3aW4=?= Reply-To: =?UTF-8?B?0JXQs9C+0YDQvtCyINCV0LPQvtGA?= Content-Type: text/plain; charset="utf-8" Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 168AaRV4031605 Hello! May be bisect result help: e_egorov AT inp-w-egorov-e /tmp/newlib-cygwin $ git bisect bad ff4440fcf7687d9af05f4c2fcb163fca5b2167f9 is the first bad commit commit ff4440fcf7687d9af05f4c2fcb163fca5b2167f9 Author: Takashi Yano via Cygwin-patches Date: Tue Feb 16 20:37:05 2021 +0900 Cygwin: console: Introduce new thread which handles input signal. - Currently, Ctrl-Z, Ctrl-\ and SIGWINCH does not work in console if the process does not call read() or select(). This is because these are processed in process_input_message() which is called from read() or select(). This is a long standing issue of console. Addresses: https://cygwin.com/pipermail/cygwin/2020-May/244898.html https://cygwin.com/pipermail/cygwin/2021-February/247779.html With this patch, new thread which handles only input signals is introduced so that Crtl-Z, etc. work without calling read() or select(). Ctrl-S and Ctrl-Q are also handled in this thread. winsup/cygwin/exceptions.cc | 1 + winsup/cygwin/fhandler.h | 5 +- winsup/cygwin/fhandler_console.cc | 177 +++++++++++++++++++++++++++++++++++++- 3 files changed, 181 insertions(+), 2 deletions(-) чт, 8 июл. 2021 г. в 01:05, Andrey Repin : > Greetings, Егоров Егор! > > > I have a similar problem too. > > Unfortunately, "me too" is not a useful issue report. > > > After upgrading to cygwin-3.2.0 the input of Cyrillic characters in the > > bash console is broken. Can we expect a fix for the problem in the next > > nightly builds? > > Please follow issue reporting guide: > > Problem reports: https://cygwin.com/problems.html > > See also: > > FAQ: https://cygwin.com/faq/ > Documentation: https://cygwin.com/docs.html > > > -- > With best regards, > Andrey Repin > Wednesday, July 7, 2021 21:52:50 > > Sorry for my terrible english... -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple