From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29302 invoked by alias); 27 Aug 2019 18:04:19 -0000 Mailing-List: contact cygwin-developers-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-developers-owner@cygwin.com Mail-Followup-To: cygwin-developers@cygwin.com Received: (qmail 29287 invoked by uid 89); 27 Aug 2019 18:04:18 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-5.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=screen, management, HContent-Transfer-Encoding:8bit X-HELO: conuserg-02.nifty.com Received: from conuserg-02.nifty.com (HELO conuserg-02.nifty.com) (210.131.2.69) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 27 Aug 2019 18:04:16 +0000 Received: from localhost.localdomain (ntsitm268057.sitm.nt.ngn.ppp.infoweb.ne.jp [125.1.110.57]) (authenticated) by conuserg-02.nifty.com with ESMTP id x7RI44fB011407; Wed, 28 Aug 2019 03:04:11 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-02.nifty.com x7RI44fB011407 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.ne.jp; s=dec2015msa; t=1566929051; bh=w0uygjIYKJDqm67nVtGOJBBaHYO4ogaDwNhqtoTnIMI=; h=From:To:Cc:Subject:Date:From; b=BML4Ku9gObxgt81Fwmcgyn/QvBUu9RzWtV56tSPVfCHFtczz9O0dec6Ob3uFSdwfL AK9dKIA863iRJQFvY36ip7GeT0XcFpySaQclGV36hPBGpkEQ2EShIcl7M1EkGEf/1/ taKDABPL30HrRMiOdJr5b9lkmkWX5HTzMAb3gpIpTFDSa0eZMWc4lHGVP37uNSJVwG DBUc/atvS7KvYiD3BxBpCEMumZky4TpuZQ6LgrzsnBEHsXAICgaU7pRY0ugW7QYzOB qywm3hm3iCrAVieKYbd9auZGAh6aADWthAifJcy9vH3hsvGCzOgngbL1MIn/SacUo4 E5YhO6Ioi7HRA== From: Takashi Yano To: cygwin-developers@cygwin.com Cc: Takashi Yano Subject: [PATCH v9 0/1] Cygwin: pty: add pseudo console support. Date: Tue, 27 Aug 2019 18:04:00 -0000 Message-Id: <20190827180402.777-1-takashi.yano@nifty.ne.jp> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-08/txt/msg00032.txt.bz2 Major changes from v8: - Fix again charset conversion to make it consistent with that of mintty. - Fix management of the state variable which shows whether process is attached to the pseudo console. - Solve the issue that gnu screen and tmux does not work properly in Win10 1903. - Fix small bug and refactor codes regarding API hook. Takashi Yano (1): Cygwin: pty: add pseudo console support. winsup/cygwin/dtable.cc | 51 + winsup/cygwin/fhandler.h | 45 +- winsup/cygwin/fhandler_console.cc | 32 + winsup/cygwin/fhandler_tty.cc | 1765 ++++++++++++++++++++++++- winsup/cygwin/fork.cc | 24 + winsup/cygwin/init.cc | 1 + winsup/cygwin/select.cc | 22 +- winsup/cygwin/spawn.cc | 61 + winsup/cygwin/strace.cc | 24 + winsup/cygwin/tty.cc | 8 + winsup/cygwin/tty.h | 24 +- winsup/utils/cygwin-console-helper.cc | 14 +- 12 files changed, 2016 insertions(+), 55 deletions(-) -- 2.21.0