From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 121589 invoked by alias); 3 Apr 2019 16:36:42 -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 121576 invoked by uid 89); 3 Apr 2019 16:36:42 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-5.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=HX-Languages-Length:1240, explain X-HELO: conuserg-06.nifty.com Received: from conuserg-06.nifty.com (HELO conuserg-06.nifty.com) (210.131.2.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 03 Apr 2019 16:36:41 +0000 Received: from localhost.localdomain (ntsitm424054.sitm.nt.ngn.ppp.infoweb.ne.jp [219.97.74.54]) (authenticated) by conuserg-06.nifty.com with ESMTP id x33GaQoE014011; Thu, 4 Apr 2019 01:36:31 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-06.nifty.com x33GaQoE014011 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.ne.jp; s=dec2015msa; t=1554309391; bh=J3obNfChRM71Yadzdepb+gaATIsjTUPQcIwkzx85kGs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XLvJKqmZmbV4r3X+DYs1gwDZfaqb24z7PV7H2K11JKJM23BGZpJVdc1GjaASzbZei hk+UCSTWey345bmFa9n1/jDK2RryTb5Ko/lIo3d/fc8Alxt7xakmu1pkZBrGjAiKbC LlryeMBsOzzlj+khKlVXznaVgKiQtE7MLMDhGL4n0mGF0Xj5m8O2pWBH9FyOxotNHI fPXlIuhKLcxLg4FVu6TiT1dj5R1R1Fp/y7UojXP0sx+czJxc0jNmM1oIJlyaGxdjdc Ckta7QUpIiIqWu05XrHq9L5vjprsVd7C2+cmAvB7G7yE3XWRHM5c9DJIZwHNwiqbbC 54O3dFPThPFRQ== From: Takashi Yano To: cygwin-developers@cygwin.com Cc: Takashi Yano Subject: [PATCH v2 0/1] Pseudo console support in PTY (v2) Date: Wed, 03 Apr 2019 16:36:00 -0000 Message-Id: <20190403163621.2954-1-takashi.yano@nifty.ne.jp> In-Reply-To: <20190402110248.GP3337@calimero.vinschen.de> References: <20190402110248.GP3337@calimero.vinschen.de> X-IsSubscribed: yes X-SW-Source: 2019-04/txt/msg00009.txt.bz2 On Sat, 30 Mar 2019 22:08:04 +0900 Takashi Yano wrote: > Known problems: > * mintty fails to start if it is started in console cygwin > session. This has been resolved in the new version. On Tue, 2 Apr 2019 13:02:48 +0200 Corinna Vinschen wrote: > I found another weird effect which I can't explain off the top > of my head: system_printf() debug output does not show up > in a mintty anymore with this patch. Any idea why? I am not sure, but this may be fixed in the new version. Could you please try? D=http://tyan0.dip.jp/cygwin ${D}/x86_64/test/cygwin1-20190404.dll.xz ${D}/x86_64/test/cygwin-console-helper.exe.xz ${D}/x86/test/cygwin1-20190404.dll.xz ${D}/x86/test/cygwin-console-helper.exe.xz Takashi Yano (1): Cygwin: pty: add pseudo console support. winsup/cygwin/dtable.cc | 7 + winsup/cygwin/fhandler.h | 42 +- winsup/cygwin/fhandler_console.cc | 32 ++ winsup/cygwin/fhandler_tty.cc | 583 ++++++++++++++++++++++++-- winsup/cygwin/fork.cc | 20 + winsup/cygwin/select.cc | 3 + winsup/cygwin/spawn.cc | 32 ++ winsup/cygwin/tty.cc | 4 + winsup/cygwin/tty.h | 20 +- winsup/utils/cygwin-console-helper.cc | 14 +- 10 files changed, 716 insertions(+), 41 deletions(-) -- 2.17.0