From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from m0.truegem.net (m0.truegem.net [69.55.228.47]) by sourceware.org (Postfix) with ESMTPS id 9103D3857005 for ; Thu, 27 Aug 2020 08:24:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9103D3857005 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=maxrnd.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=mark@maxrnd.com Received: from localhost (mark@localhost) by m0.truegem.net (8.12.11/8.12.11) with ESMTP id 07R8O37Y029292 for ; Thu, 27 Aug 2020 01:24:04 -0700 (PDT) (envelope-from mark@maxrnd.com) X-Authentication-Warning: m0.truegem.net: mark owned process doing -bs Date: Thu, 27 Aug 2020 01:24:03 -0700 (PDT) From: Mark Geisert X-X-Sender: mark@m0.truegem.net To: cygwin-developers@cygwin.com Subject: minor problem with DEBUGGING build of Cygwin Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no 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-developers@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component developers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Aug 2020 08:24:08 -0000 Hi folks, I've built the Cygwin DLL tonight (though not with the absolute latest git HEAD) with DEBUGGING set and am seeing output like... 74972684 [main] -bash 1153 close_handle: CloseHandle(pi->bye<0x0>) failed void pty_slave_cleanup(select_record*, select_stuff*):1348, Win32 error 6 ...displayed for each character I'm typing on the keyboard. This is coming from select.cc:1348, which reads "CloseHandle (pi->bye);". Win32 error 6 is INVALID_HANDLE_VALUE. If this is expected, I'll just keep pressing ^L to clean up the display. I thought I'd mention it in case it points to something malfunctioning. ..mark